We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5dd208 commit 5b64094Copy full SHA for 5b64094
2 files changed
.github/workflows/test.yml
@@ -1,10 +1,6 @@
1
name: Test
2
-
3
on:
4
push:
5
- pull_request:
6
- workflow_dispatch:
7
8
jobs:
9
build:
10
name: Build
@@ -13,14 +9,19 @@ jobs:
13
steps:
14
- uses: actions/checkout@v3.1.0
15
11
- run: |
16
- mkdir artifacts
17
- echo "===== Attempt 1 ====" > artifaces/${GITHUB_SHA}
12
+ mkdir artifacts
+ echo "===== Attempt 1 ====" > artifacts/${GITHUB_SHA}
18
- name: Archive logs
19
uses: actions/upload-artifact@v3
20
if: always()
21
with:
22
- name: resources
+ name: ${{ github.sha }}
23
retention-days: 1
24
path: artifacts/
25
+ find:
+ name: find
+ needs: build
+ runs-on: ubuntu-latest
+ steps:
26
- name: Find URL
27
+ run: echo ${GITHUB_SHA}
README.md
@@ -1,3 +1,3 @@
# artifact-url-testing
-change
+chang
0 commit comments