From 423a712d89f94df03b03f4f5f1191a0a32eb432e Mon Sep 17 00:00:00 2001 From: Nils Date: Sun, 19 Feb 2023 16:56:02 +0100 Subject: test rename --- .github/workflows/macos.yml | 26 ++++++++++++++++++++++++++ .github/workflows/macos_11.yml | 26 -------------------------- .github/workflows/ubuntu.yml | 27 +++++++++++++++++++++++++++ .github/workflows/ubuntu_2004.yml | 27 --------------------------- README.md | 4 ++-- 5 files changed, 55 insertions(+), 55 deletions(-) create mode 100644 .github/workflows/macos.yml delete mode 100644 .github/workflows/macos_11.yml create mode 100644 .github/workflows/ubuntu.yml delete mode 100644 .github/workflows/ubuntu_2004.yml diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 0000000..2ebd53d --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,26 @@ +name: "macOS" + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + + workflow_dispatch: + +jobs: + macos-11: + name: Test macOS + runs-on: macos-latest + steps: + - name: Install dependencies 🔧 + run: brew install imagemagick jhead + + - name: Checkout 🛎️ + uses: actions/checkout@v3 + + - name: Get assert.sh 🎁 + run: curl -f "https://raw.githubusercontent.com/lehmannro/assert.sh/v1.1/assert.sh" -o assert.sh + + - name: Test 🛠️ + run: bash test.sh \ No newline at end of file diff --git a/.github/workflows/macos_11.yml b/.github/workflows/macos_11.yml deleted file mode 100644 index d3647bf..0000000 --- a/.github/workflows/macos_11.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: "macOS 11" - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - - workflow_dispatch: - -jobs: - macos-11: - name: Test macOS 11 - runs-on: macos-11 - steps: - - name: Install dependencies 🔧 - run: brew install imagemagick jhead - - - name: Checkout 🛎️ - uses: actions/checkout@v3 - - - name: Get assert.sh 🎁 - run: curl -f "https://raw.githubusercontent.com/lehmannro/assert.sh/v1.1/assert.sh" -o assert.sh - - - name: Test 🛠️ - run: bash test.sh \ No newline at end of file diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml new file mode 100644 index 0000000..fca5534 --- /dev/null +++ b/.github/workflows/ubuntu.yml @@ -0,0 +1,27 @@ +name: "Ubuntu" + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + + workflow_dispatch: + +jobs: + ubuntu-2004: + name: Test Ubuntu + runs-on: ubuntu-latest + steps: + + - name: Dependencies 🔧 + run: sudo apt-get install imagemagick jhead + + - name: Checkout 🛎️ + uses: actions/checkout@v3 + + - name: Get assert.sh 🎁 + run: curl -f "https://raw.githubusercontent.com/lehmannro/assert.sh/v1.1/assert.sh" -o assert.sh + + - name: Test 🛠️ + run: bash test.sh \ No newline at end of file diff --git a/.github/workflows/ubuntu_2004.yml b/.github/workflows/ubuntu_2004.yml deleted file mode 100644 index d3c03a4..0000000 --- a/.github/workflows/ubuntu_2004.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: "Ubuntu 20.04 LTS" - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - - workflow_dispatch: - -jobs: - ubuntu-2004: - name: Test Ubuntu 20.04 LTS - runs-on: ubuntu-20.04 - steps: - - - name: Dependencies 🔧 - run: sudo apt-get install imagemagick jhead - - - name: Checkout 🛎️ - uses: actions/checkout@v3 - - - name: Get assert.sh 🎁 - run: curl -f "https://raw.githubusercontent.com/lehmannro/assert.sh/v1.1/assert.sh" -o assert.sh - - - name: Test 🛠️ - run: bash test.sh \ No newline at end of file diff --git a/README.md b/README.md index 3f7bb89..2c0dc98 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ Bash Script to generate static web galleries. No server-side programs (i.e. PHP, MySQL) required. [![ShellCheck](https://github.com/Cyclenerd/gallery_shell/actions/workflows/shellcheck.yml/badge.svg?branch=master)](https://github.com/Cyclenerd/gallery_shell/actions/workflows/shellcheck.yml) -[![Ubuntu 20.04 LTS](https://github.com/Cyclenerd/gallery_shell/actions/workflows/ubuntu_2004.yml/badge.svg?branch=master)](https://github.com/Cyclenerd/gallery_shell/actions/workflows/ubuntu_2004.yml) -[![macOS 11](https://github.com/Cyclenerd/gallery_shell/actions/workflows/macos_11.yml/badge.svg?branch=master)](https://github.com/Cyclenerd/gallery_shell/actions/workflows/macos_11.yml) +[![Ubuntu](https://github.com/Cyclenerd/gallery_shell/actions/workflows/ubuntu.yml/badge.svg?branch=master)](https://github.com/Cyclenerd/gallery_shell/actions/workflows/ubuntu.yml) +[![macOS](https://github.com/Cyclenerd/gallery_shell/actions/workflows/macos.yml/badge.svg?branch=master)](https://github.com/Cyclenerd/gallery_shell/actions/workflows/macos.yml) [![GitHub](https://img.shields.io/github/license/cyclenerd/gallery_shell)](https://github.com/Cyclenerd/gallery_shell/blob/master/LICENSE) ## Overview -- cgit v1.2.3