From d77ae00490caa37bb5f8cd869c597c89db178960 Mon Sep 17 00:00:00 2001 From: Mateusz Faderewski Date: Sun, 17 Dec 2023 20:57:51 +0100 Subject: [PATCH] final --- .github/workflows/build.yml | 60 ++++++++++++++++++------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c678c10..a1e01ab 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,41 +13,41 @@ on: workflow_dispatch: jobs: - # build-firmware: - # runs-on: ubuntu-latest + build-firmware: + runs-on: ubuntu-latest - # steps: - # - name: Download SummerCart64 repository - # uses: actions/checkout@v3 + steps: + - name: Download SummerCart64 repository + uses: actions/checkout@v3 - # - name: Set package version - # uses: frabert/replace-string-action@v2 - # id: version - # with: - # pattern: '\/' - # string: '${{ github.ref_name }}' - # replace-with: '-' + - name: Set package version + uses: frabert/replace-string-action@v2 + id: version + with: + pattern: '\/' + string: '${{ github.ref_name }}' + replace-with: '-' - # - name: Build firmware - # run: ./docker_build.sh release --force-clean - # env: - # SC64_VERSION: ${{ steps.version.outputs.replaced }} + - name: Build firmware + run: ./docker_build.sh release --force-clean + env: + SC64_VERSION: ${{ steps.version.outputs.replaced }} - # - name: Upload artifact - # uses: actions/upload-artifact@v3 - # with: - # name: sc64-pkg-${{ steps.version.outputs.replaced }} - # path: | - # sc64-extra-${{ steps.version.outputs.replaced }}.zip - # sc64-firmware-${{ steps.version.outputs.replaced }}.bin + - name: Upload artifact + uses: actions/upload-artifact@v3 + with: + name: sc64-pkg-${{ steps.version.outputs.replaced }} + path: | + sc64-extra-${{ steps.version.outputs.replaced }}.zip + sc64-firmware-${{ steps.version.outputs.replaced }}.bin - # - name: Upload release assets - # if: github.event_name == 'release' && github.event.action == 'created' - # uses: softprops/action-gh-release@v0.1.15 - # with: - # files: | - # sc64-extra-${{ steps.version.outputs.replaced }}.zip - # sc64-firmware-${{ steps.version.outputs.replaced }}.bin + - name: Upload release assets + if: github.event_name == 'release' && github.event.action == 'created' + uses: softprops/action-gh-release@v0.1.15 + with: + files: | + sc64-extra-${{ steps.version.outputs.replaced }}.zip + sc64-firmware-${{ steps.version.outputs.replaced }}.bin build-deployer: strategy: