aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-09-27 07:27:23 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-09-27 07:31:21 +0530
commit53b8b9347fb5a5b4531619b9949d3397e63af2ce (patch)
treebd3048745fac46baed0c12fa04fab4d0cea1b776 /.github/workflows
parentrefactor: remove references 'Ferdi.ipcRenderer' in recipes - create an abstra... (diff)
downloadferdium-app-53b8b9347fb5a5b4531619b9949d3397e63af2ce.tar.gz
ferdium-app-53b8b9347fb5a5b4531619b9949d3397e63af2ce.tar.zst
ferdium-app-53b8b9347fb5a5b4531619b9949d3397e63af2ce.zip
fix: turning off tagging of recipes submodule since its failing due to permissions
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ferdi-builds.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/ferdi-builds.yml b/.github/workflows/ferdi-builds.yml
index 851eb021a..f0b6d7900 100644
--- a/.github/workflows/ferdi-builds.yml
+++ b/.github/workflows/ferdi-builds.yml
@@ -46,6 +46,7 @@ jobs:
46 ref: nightly 46 ref: nightly
47 submodules: recursive 47 submodules: recursive
48 fetch-depth: 0 # Note: Needed to be able to pull the 'develop' branch as well for merging 48 fetch-depth: 0 # Note: Needed to be able to pull the 'develop' branch as well for merging
49 # ssh-key: ${{ secrets.FERDI_PUBLISH_TOKEN }}
49 - id: should_run 50 - id: should_run
50 name: Check whether there are any commits since this run was last triggered and push them and/or set the output 51 name: Check whether there are any commits since this run was last triggered and push them and/or set the output
51 if: ${{ github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && contains(github.event.inputs.message, '[nightly branch]')) }} 52 if: ${{ github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && contains(github.event.inputs.message, '[nightly branch]')) }}
@@ -66,8 +67,9 @@ jobs:
66 git tag -f $TAG_NAME 67 git tag -f $TAG_NAME
67 git push origin --tags --no-verify 68 git push origin --tags --no-verify
68 # Also tag the submodule so as to help identify which changes went into which nightly release 69 # Also tag the submodule so as to help identify which changes went into which nightly release
69 git -C recipes tag -f $TAG_NAME 70 # TODO: Not working due to cross-repo access issues by the github-action bot
70 git -C recipes push origin --tags --no-verify 71 # git -C recipes tag -f $TAG_NAME
72 # git -C recipes push origin --tags --no-verify
71 73
72 git checkout nightly 74 git checkout nightly
73 fi 75 fi