Skip to content

Commit

Permalink
CI: Maybe it will work this time
Browse files Browse the repository at this point in the history
  • Loading branch information
praydog committed Sep 24, 2024
1 parent bd62b3a commit 93a7f7a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/dev-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,20 @@ jobs:
with:
path: ${{github.workspace}}/artifacts

- name: Set padded run number
run: |
$paddedRunNumber = "{0:D4}" -f ${{ github.run_number }}
echo "RUN_NUMBER=$paddedRunNumber" >> $env:GITHUB_ENV
shell: powershell

- name: Create Release
uses: ncipollo/release-action@6c75be85e571768fa31b40abf38de58ba0397db5
with:
repo: REFramework-nightly
owner: praydog
token: ${{ secrets.REPO_TOKEN }}
name: ${{format('REF Nightly {0:D4} ({1})', github.run_number, github.sha)}}
tag: ${{format('nightly-{0:D4}-{1}', github.run_number, github.sha)}}
name: ${{format('REF Nightly {0} ({1})', env.RUN_NUMBER, github.sha)}}
tag: ${{format('nightly-{0}-{1}', env.RUN_NUMBER, github.sha)}}
artifacts: ${{github.workspace}}/artifacts/**/*.zip
makeLatest: true
bodyFile: ${{github.workspace}}/nightly-body.md
Expand Down

0 comments on commit 93a7f7a

Please sign in to comment.