Update tasks.yaml

This commit is contained in:
Minoplhy 2021-09-30 22:06:42 +07:00 committed by GitHub
parent 5bd387cc6b
commit ea33f2d5be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,25 +11,6 @@ jobs:
uses: minoplhy/filters-build_actions@main
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
- name: Restore the previous run result
uses: actions/cache@v2
with:
path: |
run_result
key: ${{ github.run_id }}-${{ github.job }}-${{ steps.timestamp.outputs.timestamp }}
restore-keys: |
${{ github.run_id }}-${{ github.job }}-
- name: Get the previous run result
id: run_result
run: cat run_result 2>/dev/null || echo 'default'
- uses: actions/checkout@v2
if: steps.run_result.outputs.run_result != 'success'
- if: steps.run_result.outputs.run_result != 'success'
run: echo "I'm alive!" && exit 0
- run: echo "::set-output name=run_result::success" > run_result
- name: build
uses: minoplhy/filters-maker@main
env:
@ -47,22 +28,3 @@ jobs:
BRANCH_VERSION: "main"
sub_action_location: "sub-action.py"
sub_action_Repo: "minoplhy/filters"
- name: Restore the previous run result
uses: actions/cache@v2
with:
path: |
run_result
key: ${{ github.run_id }}-${{ github.job }}-${{ steps.timestamp.outputs.timestamp }}
restore-keys: |
${{ github.run_id }}-${{ github.job }}-
- name: Get the previous run result
id: run_result2
run: cat run_result 2>/dev/null || echo 'default'
- uses: actions/checkout@v2
if: steps.run_result.outputs.run_result2 != 'success'
- if: steps.run_result.outputs.run_result2 != 'success'
run: echo "I'm alive!" && exit 0
- run: echo "::set-output name=run_result::success" > run_result