Skip to content

Change to using version number instead of /etc/version #45

Change to using version number instead of /etc/version

Change to using version number instead of /etc/version #45

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*.*.*'
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
container: ghcr.io/toltec-dev/qt
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: |
./dist.sh
- uses: actions/upload-artifact@v4
with:
name: build
path: dist/*
if-no-files-found: error
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: dist/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}