Skip to content

Publish tagged QCW release #5

Publish tagged QCW release

Publish tagged QCW release #5

name: Publish tagged QCW release
on:
workflow_dispatch:
jobs:
call-prepare-docker:
uses: ./.github/workflows/prepare-docker-release.yml
prepare:
needs: call-prepare-docker
runs-on: ubuntu-latest
steps:
- name: "📝 Configure checkout"
run: git config --global core.autocrlf input
- name: "📝 Checkout"
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: "🛻 Donwload artifacts"
uses: actions/download-artifact@v4
with:
path: qcw
- name: "🏷️ Publish release"
uses: ncipollo/release-action@v1
with:
name: "TEST"
prerelease: "true"
artifacts: "qcw/**/*.exe"
bodyFile: "release.template.md"
tag: "vTEST"
commit: "update-workflows"