diff --git a/.github/workflows/build-main.yml b/.github/workflows/build-main.yml index e9415d5e..7670fd9a 100644 --- a/.github/workflows/build-main.yml +++ b/.github/workflows/build-main.yml @@ -8,7 +8,7 @@ on: - "*-[0-9]+.*" jobs: - define-matrix: + build: runs-on: ${{ matrix.os }} strategy: matrix: @@ -26,6 +26,7 @@ jobs: run: .github/setup.sh - name: Execute the build run: .github/build.sh + shell: bash env: GPG_KEY_NAME: ${{ secrets.GPG_KEY_NAME }} GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index 8f6ab877..a00dc919 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -6,7 +6,7 @@ on: - master jobs: - define-matrix: + build: runs-on: ${{ matrix.os }} strategy: matrix: @@ -24,3 +24,4 @@ jobs: run: .github/setup.sh - name: Execute the build run: .github/build.sh + shell: bash