Skip to content

Commit

Permalink
trying fixes to release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mbtaylor1982 committed Oct 16, 2024
1 parent 0f3a64a commit 66ff379
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ permissions:
on:
push:
tags:
- "Release_**"
workflow_dispatch:

- "release_*"
jobs:
make_software:
runs-on: ubuntu-latest
Expand All @@ -17,11 +15,12 @@ jobs:
uses: actions/checkout@v4
- name: Get the tag / version
id: version
if: startsWith(github.ref, 'refs/tags/release_')
run: echo "version=${GITHUB_REF#refs/tags/release_}" >> $GITHUB_OUTPUT
- name: Invoke Makefile
run: make all lha adf zip VER=${{ steps.version.outputs.version }}

- uses: actions/upload-artifact@v4
- name: upload build artifacts
uses: actions/upload-artifact@v4
with:
name: software
path: |
Expand Down

0 comments on commit 66ff379

Please sign in to comment.