new version
Some checks failed
make-a-release / release (push) Failing after 0s

This commit is contained in:
Lukas Greve
2025-11-17 15:56:29 +01:00
parent 0d9d2a027a
commit 0c8c412fd1

View File

@@ -3,8 +3,8 @@ name: make-a-release
on: on:
push: push:
tags: tags:
- '*' - "v*.*.*"
jobs: jobs:
release: release:
runs-on: fedora-cloud-42 runs-on: fedora-cloud-42
@@ -20,8 +20,13 @@ jobs:
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Build
run: echo ${{ github.sha }} > Release.txt
- name: Test
run: cat Release.txt
- name: Release
- uses: https://git.phyllo.me/devops/action-gh-release@v2 - uses: https://git.phyllo.me/devops/action-gh-release@v2
if: github.ref_type == 'tag'
with: with:
files: |- files: Release.txt
release-notes.txt
api_key: '${{secrets.RELEASE_TOKEN}}'