From 5914b4e8890c875ee38dccef74548372be061a82 Mon Sep 17 00:00:00 2001 From: GilbN Date: Sat, 9 Apr 2022 16:44:45 +0200 Subject: [PATCH] build testing --- .github/workflows/minify-and-deploy.yml | 17 ++++++++++++++--- css/base/bazarr/bazarr-base.css | 2 +- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/.github/workflows/minify-and-deploy.yml b/.github/workflows/minify-and-deploy.yml index ec2a519d..55cf9195 100644 --- a/.github/workflows/minify-and-deploy.yml +++ b/.github/workflows/minify-and-deploy.yml @@ -4,10 +4,21 @@ on: branches: - master - develop + - testing paths-ignore: - 'docker-mods/**' - '.vscode/**' - '.github/**' + workflow_dispatch: + inputs: + branch: + description: 'Select branch' + required: true + type: choice + options: + - master + - develop + - testing jobs: deploy: runs-on: ubuntu-latest @@ -53,7 +64,7 @@ jobs: done - name: Deploy uses: peaceiris/actions-gh-pages@v3 - if: ${{ github.ref == 'refs/heads/master' }} + if: ${{ github.ref == 'refs/heads/master' || github.event.inputs.branch == 'master' }} with: publish_dir: ./ publish_branch: live @@ -61,7 +72,7 @@ jobs: exclude_assets: '' - name: Deploy Develop uses: peaceiris/actions-gh-pages@v3 - if: ${{ github.ref == 'refs/heads/develop' }} + if: ${{ github.ref == 'refs/heads/develop' || github.event.inputs.branch == 'develop' }} with: publish_dir: ./ publish_branch: live_develop @@ -69,7 +80,7 @@ jobs: exclude_assets: '' - name: Deploy Testing uses: peaceiris/actions-gh-pages@v3 - if: ${{ github.ref == 'refs/heads/testing' }} + if: ${{ github.ref == 'refs/heads/testing' || github.event.inputs.branch == 'testing' }} with: publish_dir: ./ publish_branch: live_testing diff --git a/css/base/bazarr/bazarr-base.css b/css/base/bazarr/bazarr-base.css index 96afce11..3f64e954 100644 --- a/css/base/bazarr/bazarr-base.css +++ b/css/base/bazarr/bazarr-base.css @@ -80,7 +80,7 @@ a:hover { border: 1px solid rgba(255, 255, 255, .1); } -.page-link:focus { +.page-link:focus { z-index: 3; outline: 0; box-shadow: 0 0 0 0.2rem rgb(var(--accent-color) / 25%);