Skip to content

Commit 4cdbc2b

Browse files
committed
setting a tag other than "master"
1 parent a4e8280 commit 4cdbc2b

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,15 @@ jobs:
5151
# Using `tarql --ntriples` to emit ntriples directly.
5252
# This is a workaround to our lindas-upload-cronjob failing to convert a ttl file this large using rapper.
5353
# (It fails with an inexplicable `unexpected $end` in the middle of the file)
54-
54+
55+
- name: Set tag as date
56+
id: set_tag
57+
run: echo "tag=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
58+
5559
- name: Release
5660
uses: softprops/action-gh-release@v1
5761
with:
5862
files: ${{ github.workspace }}/col.nt.gz
5963
generate_release_notes: true
60-
tag_name: ${{ github.ref_name }}
64+
tag_name: ${{ steps.set_tag.outputs.tag }}
65+

0 commit comments

Comments
 (0)