diff --git a/.github/workflows/commit-build.yml b/.github/workflows/commit.yml similarity index 93% rename from .github/workflows/commit-build.yml rename to .github/workflows/commit.yml index ed8cea6..f2cb197 100644 --- a/.github/workflows/commit-build.yml +++ b/.github/workflows/commit.yml @@ -12,6 +12,9 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Run shellcheck + uses: ludeeus/action-shellcheck@master + - name: Build deb for iphoneos-arm uses: jiro4989/build-deb-action@v2 with: @@ -30,6 +33,7 @@ jobs: version: 0.2 arch: 'amd64' desc: 'neofetch with nekos' + - name: Upload iphoneos-arm deb as artifact uses: actions/upload-artifact@v2 with: diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml deleted file mode 100644 index eb10c9d..0000000 --- a/.github/workflows/shellcheck.yml +++ /dev/null @@ -1,16 +0,0 @@ -# Run shellcheck on commit - -name: Check with shellcheck - -on: - push: - pull_request: - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Run shellcheck - uses: ludeeus/action-shellcheck@master