https://github.com/acmesoftwarellc/app-build-number
Generate a build number for an app based on current time
https://github.com/acmesoftwarellc/app-build-number
Last synced: about 1 year ago
JSON representation
Generate a build number for an app based on current time
- Host: GitHub
- URL: https://github.com/acmesoftwarellc/app-build-number
- Owner: AcmeSoftwareLLC
- License: mit
- Created: 2023-10-03T08:38:32.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-03T11:02:24.000Z (over 2 years ago)
- Last Synced: 2025-01-27T13:09:52.496Z (about 1 year ago)
- Language: JavaScript
- Size: 392 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# App Version Number
This action generates a version number for your app. It uses the current date and time to generate the version number.
## Usage
```yaml
steps:
- name: Generate
id: generate
uses: AcmeSoftwareLLC/app-build-number@v1
with:
timezone: Asia/Kathmandu
- name: Display the generated build number
run: echo "Build Number > ${{ steps.generate.outputs.build-number }}"
```