Skip to content

Commit

Permalink
ci: wip build number
Browse files Browse the repository at this point in the history
  • Loading branch information
Lionel Untereiner committed Oct 3, 2024
1 parent baf47ca commit 98eebae
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build_number.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Compute a build number

on:
pull_request:
branches:
- develop
workflow_dispatch:


jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Generate build number
id: buildnumber
uses: onyxmueller/build-tag-number@v1
with:
token: ${{secrets.github_token}}

- name: Echo
run: |
echo ${{ steps.buildnumber.outputs.build_number }}

0 comments on commit 98eebae

Please sign in to comment.