An open API service indexing awesome lists of open source software.

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

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 }}"
```