From 5a0773286341a102f7152e03807eef0c7c114ea8 Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Sun, 27 Dec 2020 19:22:59 -0600 Subject: [PATCH] Combine workflows into commit.yml --- .../workflows/{commit-build.yml => commit.yml} | 4 ++++ .github/workflows/shellcheck.yml | 16 ---------------- 2 files changed, 4 insertions(+), 16 deletions(-) rename .github/workflows/{commit-build.yml => commit.yml} (93%) delete mode 100644 .github/workflows/shellcheck.yml 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