Skip to content

Commit

Permalink
testing workflow changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mbtaylor1982 committed Jan 5, 2025
1 parent a2a0f61 commit 1372c41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,17 @@ on:
tags:
- 'v*' # Trigger only when tag matches v*, i.e. v1.0, v21.12.31, v211231
jobs:
kicad_outputs:
uses: ./.github/workflows/kicad.yml
build_firmware_10M16:
secrets: inherit
uses: ./.github/workflows/build.yml
with:
device: '10M16SCU169C8G'
test:
uses: ./.github/workflows/test.yml
secrets: inherit
ADF:
needs: [build_firmware_10M16]
uses: ./.github/workflows/make_adf.yml
secrets: inherit
create_release:
needs: [kicad_outputs, build_firmware_10M16, test, ADF]
needs: [build_firmware_10M16, ADF]
runs-on: ubuntu-latest

steps:
Expand All @@ -31,14 +26,11 @@ jobs:
- name: Copy, tag with version and create SHA256 checksum
run: |
mkdir -p releases
mv ./KiCad_Outputs.zip ./KiCad_Outputs
zip -r ./releases/KiCad_Outputs_${{ github.ref_name }}.zip ./KiCad_Outputs
cp OutputFiles_10M16SCU169C8G_${{ github.ref_name }}.zip/RESDMAC.pof ./releases/RESDMAC_10M16SCU169C8G_${{ github.ref_name }}.pof
cp OutputFiles_10M16SCU169C8G_${{ github.ref_name }}.zip/resdmac_cfm0_auto.rpd ./releases/RESDMAC_10M16SCU169C8G_${{ github.ref_name }}.rpd
cp OutputFiles_10M16SCU169C8G_${{ github.ref_name }}.zip/RESDMAC_pof_sha256.txt ./releases/RESDMAC_10M16SCU169C8G_${{ github.ref_name }}_pof_sha256.txt
cp OutputFiles_10M16SCU169C8G_${{ github.ref_name }}.zip/resdmac_cfm0_auto_crc32.txt ./releases/RESDMAC_10M16SCU169C8G_${{ github.ref_name }}_rpd_crc32.txt
- name: Create a new GitHub release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
Expand All @@ -49,7 +41,6 @@ jobs:
generate_release_notes: true
files: |
./ReSDMAC_Utils_${{ github.ref_name }}.adf/ReSDMAC_Utils_${{ github.ref_name }}.adf
./releases/KiCad_Outputs_${{ github.ref_name }}.zip
./releases/RESDMAC_10M16SCU169C8G_${{ github.ref_name }}.pof
./releases/RESDMAC_10M16SCU169C8G_${{ github.ref_name }}_pof_sha256.txt
Expand Down
2 changes: 1 addition & 1 deletion Quartus/RESDMAC.out.sdc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
## DATE "Tue Nov 26 23:45:04 2024"

##
## DEVICE "10M02SCU169C8G"
## DEVICE "10M16SCU169C8G"
##


Expand Down

0 comments on commit 1372c41

Please sign in to comment.