workflow: extract package version for release tag
Build / build_arch (push) Successful in 41s
Build / publish-release (push) Failing after 8s

This commit is contained in:
2026-05-13 11:42:02 +02:00
parent bc023af374
commit 980efebcae
+7
View File
@@ -1,6 +1,9 @@
name: Build name: Build
on: [push] on: [push]
permissions:
contents: write
jobs: jobs:
build_arch: build_arch:
runs-on: archlinux runs-on: archlinux
@@ -37,6 +40,10 @@ jobs:
with: with:
name: arch-package name: arch-package
path: ./dist path: ./dist
- name: Create Git Tag
run: |
git tag ${{ needs.build_arch.steps.pkg_version.outputs.version }}
git push origin ${{ needs.build_arch.steps.pkg_version.outputs.version }}
- name: Create Release and Upload Assets - name: Create Release and Upload Assets
uses: https://github.com/softprops/action-gh-release@v1 uses: https://github.com/softprops/action-gh-release@v1
with: with: