summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/demo_page.yml26
-rw-r--r--.github/workflows/macos.yml26
-rw-r--r--.github/workflows/shellcheck.yml32
-rw-r--r--.github/workflows/ubuntu.yml27
4 files changed, 0 insertions, 111 deletions
diff --git a/.github/workflows/demo_page.yml b/.github/workflows/demo_page.yml
deleted file mode 100644
index 5dba6da..0000000
--- a/.github/workflows/demo_page.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: "Update gallery.sh demo page"
-on:
- workflow_dispatch:
-
-jobs:
- build-and-deploy:
- runs-on: ubuntu-latest
- steps:
- - name: Dependencies 🔧
- run: sudo apt-get install imagemagick jhead
- - name: Checkout 🛎️
- uses: actions/checkout@v3
- - name: Build 🖼️
- run: |
- ls -lah
- mkdir -p build/
- cp images/demo/* build/
- cd build/
- ls -lah
- bash ../gallery.sh -t "Demo Gallery" -d "thumbs"
- # https://github.com/marketplace/actions/deploy-to-github-pages
- - name: Deploy 🚀
- uses: JamesIves/github-pages-deploy-action@v4
- with:
- branch: gh-pages # The branch the action should deploy to.
- folder: build # The folder the action should deploy. \ No newline at end of file
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
deleted file mode 100644
index 2ebd53d..0000000
--- a/.github/workflows/macos.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-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/shellcheck.yml b/.github/workflows/shellcheck.yml
deleted file mode 100644
index 3016d6a..0000000
--- a/.github/workflows/shellcheck.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-name: "ShellCheck"
-
-# Controls when the workflow will run
-on:
- # Triggers the workflow on push or pull request events but only for the master branch
- push:
- branches: [ master ]
- pull_request:
- branches: [ master ]
-
- # Allows you to run this workflow manually from the Actions tab
- workflow_dispatch:
-
-# A workflow run is made up of one or more jobs that can run sequentially or in parallel
-jobs:
- # This workflow contains a single job called "test"
- shellcheck:
- # The type of runner that the job will run on
- runs-on: ubuntu-latest
-
- # Steps represent a sequence of tasks that will be executed as part of the job
- steps:
- - name: Install dependencies 🔧
- run: sudo apt-get install shellcheck
-
- # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- - name: Checkout 🛎️
- uses: actions/checkout@v3
-
- # Run ShellCheck
- - name: ShellCheck 🔎
- run: shellcheck gallery.sh \ No newline at end of file
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
deleted file mode 100644
index fca5534..0000000
--- a/.github/workflows/ubuntu.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-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