Skip to content

Commit

Permalink
Tag release with action ID, fix timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
tmprd committed Feb 9, 2023
1 parent 2aa548d commit d1c946a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
draft: true
prerelease: false
release_name: ${{ steps.build_release.outputs.RELEASE_NAME }}
tag_name: ${{ github.ref }}
tag_name: ${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}-action-id
# body_path: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ github.token }}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ config.REPORT_FAIL_ON := none

# Other constants
TODAY := $(shell date +%Y-%m-%d)
TIMESTAMP := $(shell date +%Y-%m-%d %H:%M')
TIMESTAMP := $(shell date +'%Y-%m-%d %H:%M')

# Default name for release. Ideally this should incude some kind of semantic versioning
config.RELEASE_NAME := $(config.ONTOLOGY_PREFIX) $(TIMESTAMP)
Expand Down

0 comments on commit d1c946a

Please sign in to comment.