Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamJlvt authored Feb 7, 2024
1 parent 9e2b973 commit df47bcc
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,18 @@ jobs:
- name: Build with make
run: make

- name: Add perm
- name: Add permissions
run: chmod +x ./my_navy

- name: Create Tag
id: tag
run: echo ::set-output name=TAG::$(date +'%d/%m/%Y - %H:%M')
run: echo "TAG=$(date +'%Y%m%d%H%M')" >> $GITHUB_ENV

- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
with:
files: |
my_navy
tag_name: ${{ steps.tag.outputs.TAG }}
tag_name: ${{ env.TAG }}
token: ${{ secrets.TOKEN }}

0 comments on commit df47bcc

Please sign in to comment.