We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4e8280 commit 4cdbc2bCopy full SHA for 4cdbc2b
.github/workflows/main.yml
@@ -51,10 +51,15 @@ jobs:
51
# Using `tarql --ntriples` to emit ntriples directly.
52
# This is a workaround to our lindas-upload-cronjob failing to convert a ttl file this large using rapper.
53
# (It fails with an inexplicable `unexpected $end` in the middle of the file)
54
-
+
55
+ - name: Set tag as date
56
+ id: set_tag
57
+ run: echo "tag=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
58
59
- name: Release
60
uses: softprops/action-gh-release@v1
61
with:
62
files: ${{ github.workspace }}/col.nt.gz
63
generate_release_notes: true
- tag_name: ${{ github.ref_name }}
64
+ tag_name: ${{ steps.set_tag.outputs.tag }}
65
0 commit comments