Skip to content

Commit e5a0ee2

Browse files
committed
.github: fixup 11
1 parent 687daec commit e5a0ee2

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/OnPRChanged.yml

+20
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,23 @@ jobs:
4141
cancel-in-progress: true
4242
uses: ./.github/workflows/AsteriskPRChanged.yml
4343

44+
Cleanup0:
45+
needs: [ PRChanged ]
46+
if: ${{ always() }}
47+
runs-on: ubuntu-latest
48+
steps:
49+
- id: setup
50+
run: |
51+
mkdir output
52+
echo "SSS${{ secrets.SOME_SECRET }}SSS" > output/xxx.txt
53+
54+
- name: Save Output
55+
if: always()
56+
id: save-output
57+
uses: actions/upload-artifact@v4
58+
with:
59+
name: Cleanup0-${{ env.PR_NUMBER }}
60+
if-no-files-found: ignore
61+
path: output
62+
63+

0 commit comments

Comments
 (0)