Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wmrmrx authored Mar 25, 2024
1 parent 328d3b9 commit 415b2f4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,15 @@ jobs:
- name: Make
run: make
- name: Get current date
id: date
run: echo "$(date -u +'%Y-%m-%dT%H:%M:%SZ')"
run: echo "CURRENT_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_ENV
- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.date.outputs.date }}
release_name: Release ${{ steps.date.outputs.date }}
tag_name: ${{ CURRENT_DATE }}
release_name: Release ${{ CURRENT_DATE }}
body: |
Changes in this release:
- Added output artifacts
Expand Down

0 comments on commit 415b2f4

Please sign in to comment.