Skip to content

Commit

Permalink
First work on moving tag
Browse files Browse the repository at this point in the history
  • Loading branch information
flokuep committed Apr 24, 2024
1 parent eadd633 commit 0deb6db
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,20 @@ jobs:
tag: Nightly
prerelease: true
allowUpdates: true
- name: Move tag
if: ${{ github.event_name == 'push'}}
uses: actions/github-script@v7
with:
result-encoding: string
script: |
github.rest.git.createTag({
context.repo.owner,
context.repo.repo,
"Nightly",
"",
${{ github.sha }},
})
attach-artifacts:
name: Attach artifacts
Expand Down

0 comments on commit 0deb6db

Please sign in to comment.