From 2c0638353aa8aa65e792ec7af8d315766f8eb960 Mon Sep 17 00:00:00 2001 From: Shadowy Super Coder Date: Wed, 5 Jun 2024 10:56:44 -0600 Subject: [PATCH] Update buildService and releaseService --- .github/workflows/buildService.yml | 10 +++------- .github/workflows/releaseService.yml | 3 ++- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/buildService.yml b/.github/workflows/buildService.yml index a2a6633..9ab20c4 100644 --- a/.github/workflows/buildService.yml +++ b/.github/workflows/buildService.yml @@ -19,12 +19,6 @@ jobs: - name: Checkout services repository uses: actions/checkout@v4 - - name: Debug - run: | - pwd - ls -alR - - - name: Build the service package id: build run: | @@ -33,9 +27,11 @@ jobs: make PACKAGE_ID=$(yq -oy ".id" manifest.*) echo "package_id=$PACKAGE_ID" >> $GITHUB_ENV + printf "\n SHA256SUM: $(sha256sum ${PACKAGE_ID}.s9pk) \n" shell: bash + - name: Upload .s9pk uses: actions/upload-artifact@v4 with: name: ${{ env.package_id }}.s9pk - path: ./${{ env.package_id }}.s9pk + path: ./${{ env.package_id }}.s9pk \ No newline at end of file diff --git a/.github/workflows/releaseService.yml b/.github/workflows/releaseService.yml index f1eebb4..18a80aa 100644 --- a/.github/workflows/releaseService.yml +++ b/.github/workflows/releaseService.yml @@ -33,6 +33,7 @@ jobs: - name: Generate sha256 checksum run: | PACKAGE_ID=${{ env.package_id }} + printf "\n SHA256SUM: $(sha256sum ${PACKAGE_ID}.s9pk) \n" sha256sum ${PACKAGE_ID}.s9pk > ${PACKAGE_ID}.s9pk.sha256 shell: bash @@ -68,4 +69,4 @@ jobs: echo "Publish skipped: missing registry credentials." else start-sdk publish https://$S9USER:$S9PASS@$S9REGISTRY ${{ env.package_id }}.s9pk - fi + fi \ No newline at end of file