mirror of
https://github.com/minoplhy/filters.git
synced 2024-11-13 07:07:02 +00:00
trying github actions re-run
This commit is contained in:
parent
3a74c7ba39
commit
52ed33cb85
39
.github/workflows/tasks.yaml
vendored
39
.github/workflows/tasks.yaml
vendored
@ -7,11 +7,29 @@ jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
- name: filters-build
|
||||
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:
|
||||
@ -29,3 +47,22 @@ 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
|
||||
|
Loading…
Reference in New Issue
Block a user