summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorLiang Yi <[email protected]>2021-03-29 18:51:50 +0800
committerLASER-Yi <[email protected]>2021-03-29 18:52:48 +0800
commitb1307f6745185280167717ac237cd80babb3f8c6 (patch)
treeb47a98b5dc85028adbbb251946d5c858a6e86a14 /.github
parent685df02be886aa4316b2c3f76564b34f38ed5cb9 (diff)
downloadbazarr-b1307f6745185280167717ac237cd80babb3f8c6.tar.gz
bazarr-b1307f6745185280167717ac237cd80babb3f8c6.zip
no log: Fix caches issue in schedule trigger action
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/schedule.yaml52
1 files changed, 24 insertions, 28 deletions
diff --git a/.github/workflows/schedule.yaml b/.github/workflows/schedule.yaml
index a1ea89120..027490d32 100644
--- a/.github/workflows/schedule.yaml
+++ b/.github/workflows/schedule.yaml
@@ -9,43 +9,39 @@ jobs:
Release-Nightly:
runs-on: ubuntu-latest
env:
- GITHUB_REPO: "morpheus65535/bazarr"
GIT_BRANCH: "development"
WORKFLOW_TO_TRIGGER: "release_beta_to_dev.yaml"
steps:
- - name: Get Previous Version
- uses: actions/cache@v2
- with:
- path: ./LAST_VERSION_SAVED
- key: bazarr-${{ env.GIT_BRANCH }}-${{ env.WORKFLOW_TO_TRIGGER }}-trigger
- - name: Execute
+ - name: Get Latest Version
+ id: latest-version
run: |
echo "**** Checking branch ${{ env.GIT_BRANCH }} ****"
- LATEST_VERSION=$(git ls-remote https://github.com/${{ env.GITHUB_REPO }}.git refs/heads/${{ env.GIT_BRANCH }} | cut -f1)
+ LATEST_VERSION=$(git ls-remote https://github.com/${{ github.repository }}.git refs/heads/${{ env.GIT_BRANCH }} | cut -f1)
if [[ $? != 0 ]]; then
echo "**** Cannot get latest hash from GitHub, exiting... ****"
exit 1
fi
- FILE_TO_CHECK='./LAST_VERSION_SAVED'
- PREV_VERSION=0
- [[ -f $FILE_TO_CHECK ]] && PREV_VERSION=$(cat $FILE_TO_CHECK)
- echo "**** Previous version: $PREV_VERSION ****"
echo "**** Latest version: $LATEST_VERSION ****"
- echo $LATEST_VERSION > $FILE_TO_CHECK
- if [[ 16#$LATEST_VERSION -eq 16#$PREV_VERSION ]]; then
- echo "**** No Changes Found ****"
+ echo "::set-output name=LATEST_VERSION::$LATEST_VERSION"
+ - name: Get Last Trigger Cache
+ id: cache
+ uses: actions/cache@v2
+ with:
+ path: ./LAST_VERSION_SAVED
+ key: bazarr-${{ env.GIT_BRANCH }}-${{ env.WORKFLOW_TO_TRIGGER }}-${{ steps.latest-version.outputs.LATEST_VERSION }}
+ - name: Execute
+ if: steps.cache.outputs.cache-hit != 'true'
+ run: |
+ echo "**** Trigging ${{ env.WORKFLOW_TO_TRIGGER }} of branch ${{ env.GIT_BRANCH }} ****"
+ FILE_TO_WRITE='./LAST_VERSION_SAVED'
+ if curl -sfX GET https://raw.githubusercontent.com/${{ github.repository }}/${{ env.GIT_BRANCH }}/.github/workflows/${{ env.WORKFLOW_TO_TRIGGER }} > /dev/null 2>&1; then
+ echo "**** Workflow exists. Triggering workflow for branch ${{ env.GIT_BRANCH }} ****"
+ curl -ifX POST \
+ -H "Authorization: token ${{ secrets.WF_GITHUB_TOKEN }}" \
+ -H "Accept: application/vnd.github.v3+json" \
+ -d "{\"ref\":\"refs/heads/${{ env.GIT_BRANCH }}\"}" \
+ https://api.github.com/repos/${{ github.repository }}/actions/workflows/${{ env.WORKFLOW_TO_TRIGGER }}/dispatches
+ echo "1" > $FILE_TO_WRITE
else
- echo "**** Changes Found ****"
- if curl -sfX GET https://raw.githubusercontent.com/${{ env.GITHUB_REPO }}/${{ env.GIT_BRANCH }}/.github/workflows/${{ env.WORKFLOW_TO_TRIGGER }} > /dev/null 2>&1; then
- echo "**** Workflow exists. Triggering workflow for branch ${{ env.GIT_BRANCH }} ****"
- curl -iX POST \
- -H "Authorization: token ${{ secrets.WF_GITHUB_TOKEN }}" \
- -H "Accept: application/vnd.github.v3+json" \
- -d "{\"ref\":\"refs/heads/${{ env.GIT_BRANCH }}\"}" \
- https://api.github.com/repos/${{ env.GITHUB_REPO }}/actions/workflows/${{ env.WORKFLOW_TO_TRIGGER }}/dispatches
- else
- echo "**** Workflow doesn't exist! Skipping... ****"
- fi
+ echo "**** Workflow doesn't exist! Skipping... ****"
fi
-
-