Skip to content

Commit

Permalink
fix to release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mbtaylor1982 authored Nov 18, 2024
1 parent 5476528 commit c6f6569
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ jobs:
- name: download artifacts
uses: actions/download-artifact@v4

- name: Display structure of downloaded files
run: ls -R

- name: Copy, tag with version and create SHA256 checksum
run: |
mkdir -p releases
Expand All @@ -40,9 +37,6 @@ jobs:
sha256sum OutputFiles_10M04_${{ github.ref_name }}.zip/RESDMAC.pof > ./releases/RESDMAC_10M04_${{ github.ref_name }}.pof.sha256
sha256sum OutputFiles_10M02_${{ github.ref_name }}.zip/RESDMAC.pof > ./releases/RESDMAC_10M02_${{ github.ref_name }}.pof.sha256
- name: Display structure of files
run: ls -R

- name: Create a new GitHub release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
Expand All @@ -52,7 +46,7 @@ jobs:
draft: true
generate_release_notes: true
files: |
./releases/KiCad_Outputs_${{ github.ref_name }}
./releases/KiCad_Outputs_${{ github.ref_name }}.zip
./releases/RESDMAC_10M16_${{ github.ref_name }}.pof
./releases/RESDMAC_10M04_${{ github.ref_name }}.pof
./releases/RESDMAC_10M02_${{ github.ref_name }}.pof
Expand Down

0 comments on commit c6f6569

Please sign in to comment.