diff options
author | Alexandre Flament <alex@al-f.net> | 2020-11-17 15:44:50 +0100 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2020-11-17 15:44:50 +0100 |
commit | c9fb3ac34f9cf346a031c0cbf42536a0a17d2edd (patch) | |
tree | f32fb5be2d552409a470e7128f59739a1fce675b /.github/workflows/integration.yml | |
parent | 197a013d2e06e7726231485e7c3fba410ee2cb90 (diff) | |
download | searxng-c9fb3ac34f9cf346a031c0cbf42536a0a17d2edd.tar.gz searxng-c9fb3ac34f9cf346a031c0cbf42536a0a17d2edd.zip |
[fix] fix github workflow
Diffstat (limited to '.github/workflows/integration.yml')
-rw-r--r-- | .github/workflows/integration.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index ccfbeb724..bd348d270 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -68,7 +68,7 @@ jobs: - name: Build documentation 🏗️ run: SEARX_DEBUG=1 make V=1 travis-gh-pages - name: Deploy 🚀 - if: github.ref == 'ref/heads/master' + if: github.ref == 'refs/heads/master' uses: JamesIves/github-pages-deploy-action@e774cc50ed6e8e667bca6a331d2a3ba80c79debc with: GITHUB_TOKEN: ${{ github.token }} @@ -78,7 +78,7 @@ jobs: dockers: name: Docker - if: github.ref == 'ref/heads/master' + if: github.ref == 'refs/heads/master' needs: - python - themes |