We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca6d6cc commit ca48370Copy full SHA for ca48370
.github/workflows/mirror.yml
@@ -27,8 +27,9 @@ run-name: >-
27
concurrency:
28
group: >-
29
${{ github.workflow }}-${{ github.event_name }}-${{
30
- github.event_name == 'push' && github.ref_name ||
31
github.event_name == 'delete' && github.event.ref ||
+ inputs.released-tag != null && inputs.released-tag ||
32
+ github.event_name == 'push' && github.ref_name ||
33
''
34
}}
35
cancel-in-progress: true
.github/workflows/release.yml
@@ -77,6 +77,7 @@ jobs:
77
uses: ./.github/workflows/mirror.yml
78
with:
79
released-tag: ${{ matrix.released-tag }}
80
+ secrets: inherit
81
82
post:
83
name: Post Action
0 commit comments