Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
FireHead90544 authored Jul 7, 2022
1 parent 1619b27 commit a2a966e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,19 @@ jobs:
name: Create Release
runs-on: [ubuntu-latest]
steps:
- name: Generate build number
id: buildnumber
uses: einaregilsson/build-number@v3
with:
token: ${{secrets.github_token}}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
tag_name: ${{ steps.buildnumber.outputs.build_number }}
release_name: Release ${{ steps.buildnumber.outputs.build_number }}
draft: false
prerelease: false
- name: Output Release URL File
Expand Down

0 comments on commit a2a966e

Please sign in to comment.