Files
test-actions/.gitea/workflows/release_fedora-image.yml
Lukas Greve 4f475d321f
All checks were successful
make-a-release / release (push) Successful in 10s
fix
2025-11-17 15:58:28 +01:00

33 lines
646 B
YAML

name: make-a-release
on:
push:
tags:
- "v*.*.*"
jobs:
release:
runs-on: fedora-cloud-42
defaults:
run:
shell: bash
container:
image: git.phyllo.me/devops/fedora-runner-image:latest
steps:
- name: Checkout
uses: https://git.phyllo.me/devops/checkout@v5
with:
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
if: github.ref_type == 'tag'
with:
files: Release.txt