We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08b0942 commit 69c356dCopy full SHA for 69c356d
.github/workflows/docs.yml
@@ -22,7 +22,8 @@ concurrency:
22
jobs:
23
# This job handles the entire build and deploy process for GitHub Pages
24
build-and-deploy-github:
25
- if: env.GITHUB_ACTIONS == 'true'
+ # This job runs on GitHub Actions, which is the default. We exclude Gitea.
26
+ if: ${{ !env.GITEA_ACTIONS }}
27
runs-on: ubuntu-latest
28
environment:
29
name: github-pages
@@ -55,7 +56,7 @@ jobs:
55
56
# This job handles the entire build and deploy process for Gitea
57
build-and-deploy-gitea:
58
# This job only runs on Gitea Actions
- if: env.GITEA_ACTIONS == 'true'
59
+ if: ${{ env.GITEA_ACTIONS == 'true' }}
60
61
steps:
62
- name: Checkout repository
0 commit comments