diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index bcfabc33..ea6b0ac9 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -48,7 +48,7 @@ jobs: - name: Archive ${{ matrix.model }} index file uses: actions/upload-artifact@v2 with: - name: ${{ matrix.model }}.json + name: metadata.zip path: source/Hexfile/${{ matrix.model }}.json build_multi-lang: @@ -95,7 +95,7 @@ jobs: - name: Archive ${{ matrix.model }} index file uses: actions/upload-artifact@v2 with: - name: ${{ matrix.model }}_multi-lang.json + name: metadata.zip path: source/Hexfile/${{ matrix.model }}.json tests: @@ -149,3 +149,16 @@ jobs: - name: Check python with flake8 run: flake8 Translations + + shellcheck: + name: runner / shellcheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: shellcheck + uses: reviewdog/action-shellcheck@v1 + with: + github_token: ${{ secrets.github_token }} + reporter: github-pr-review # Change reporter. + exclude: "./.git/*" # Optional. + check_all_files_with_shebangs: "false" # Optional. diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml deleted file mode 100644 index 8def392d..00000000 --- a/.github/workflows/shellcheck.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: Shell Check -on: [pull_request] -jobs: - shellcheck: - name: runner / shellcheck - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - name: shellcheck - uses: reviewdog/action-shellcheck@v1 - with: - github_token: ${{ secrets.github_token }} - reporter: github-pr-review # Change reporter. - exclude: "./.git/*" # Optional. - check_all_files_with_shebangs: "false" # Optional.