zip issues
Some checks failed
On-Site VTT - Develop / build (push) Failing after 7s

This commit is contained in:
Alexander
2023-12-11 09:15:10 +01:00
parent 5ce7d937e8
commit 0ca0dab066

View File

@@ -37,15 +37,17 @@ jobs:
with: with:
args: zip -r on-site-vtt.zip on-site-vtt args: zip -r on-site-vtt.zip on-site-vtt
- name: Tag commit - name: Tag commit
uses: anothrNick/github-tag-action@1.64.0 uses: cipollo/release-action@v1
id: tagging
with: with:
CUSTOM_TAG: dev-${{ steps.date.outputs.date }} custom_tag: dev-${{ steps.date.outputs.date }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }}
VERBOSE: true verbose: true
- name: publish release - name: publish release
uses: https://gitea.com/actions/release-action@main uses: https://gitea.com/actions/release-action@main
with: with:
title: dev-${{ steps.date.outputs.date }} title: ${{ steps.tagging.outputs.new_tag }}
body: ${{ steps.tagging.outputs.changelog }}
files: on-site-vtt.zip files: on-site-vtt.zip
pre_release: true pre_release: true
api_key: "${{secrets.RELEASE_TOKEN}}" api_key: "${{secrets.RELEASE_TOKEN}}"