Files
LocationMount/.gitea/workflows/create-release.yml
omicron 2b2189df8d
Create Release / create-release (push) Successful in 1m26s
Add release workflow
2026-07-02 19:19:43 +02:00

23 lines
594 B
YAML

name: Create Release
on:
push:
tags:
- 'v*'
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
- name: install dependencies
run: apt-get update && apt-get install -y p7zip-full
- name: build release archives
run: make all
- name: create release and upload assets
uses: softprops/action-gh-release@v2
with:
name: LocationMount ${{ github.ref_name }}
files: |
build/LocationMount.zip
build/LocationMount.tar.xz