aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-06-12 21:08:59 +0200
committerLibravatar GitHub <noreply@github.com>2021-06-12 21:08:59 +0200
commit714779a7b95809353bcb592e6e41f05fafe703cc (patch)
treec32e6ee10e8f8eec821d7bdbfc35f267e547e71b /.github
parentUpgraded some modules (#1520) (diff)
downloadferdium-app-714779a7b95809353bcb592e6e41f05fafe703cc.tar.gz
ferdium-app-714779a7b95809353bcb592e6e41f05fafe703cc.tar.zst
ferdium-app-714779a7b95809353bcb592e6e41f05fafe703cc.zip
Pass --publish never for PR builds (#1521)
Trying to fix the GitHub Personal Access Token is not set, neither programmatically, nor using env "GH_TOKEN" error.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ferdi-builds.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ferdi-builds.yml b/.github/workflows/ferdi-builds.yml
index f86650c2b..703929c28 100644
--- a/.github/workflows/ferdi-builds.yml
+++ b/.github/workflows/ferdi-builds.yml
@@ -178,7 +178,7 @@ jobs:
178 run: npm run lint && npm run test 178 run: npm run lint && npm run test
179 - name: Build Ferdi without publish for any branch not 'nightly' and not 'release' 179 - name: Build Ferdi without publish for any branch not 'nightly' and not 'release'
180 if: ${{ env.GIT_BRANCH_NAME != 'nightly' && env.GIT_BRANCH_NAME != 'release' }} 180 if: ${{ env.GIT_BRANCH_NAME != 'nightly' && env.GIT_BRANCH_NAME != 'release' }}
181 run: npm run build 181 run: npm run build -- --publish never
182 shell: bash 182 shell: bash
183 - name: Build Ferdi with publish for 'nightly' branch 183 - name: Build Ferdi with publish for 'nightly' branch
184 if: ${{ env.GIT_BRANCH_NAME == 'nightly' }} 184 if: ${{ env.GIT_BRANCH_NAME == 'nightly' }}