Skip to content

Commit 5c17841

Browse files
Move creating artifact to Run workflow
1 parent 3cc2677 commit 5c17841

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,3 @@ jobs:
2626
run: ls package-lock.json && npm install || yarn install
2727
- name: Lint
2828
run: ls package-lock.json && npm run lint || yarn lint
29-
30-
create-test-artifact:
31-
runs-on: ubuntu-latest
32-
timeout-minutes: 10
33-
steps:
34-
- uses: actions/checkout@v1
35-
- name: Create artifact for testing
36-
uses: actions/upload-artifact@master
37-
with:
38-
name: test-artifacts
39-
path: ./

.github/workflows/run.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,14 @@ jobs:
3232
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3333
age: '1 second'
3434
skip-tags: true
35+
36+
create-test-artifact:
37+
runs-on: ubuntu-latest
38+
timeout-minutes: 10
39+
steps:
40+
- uses: actions/checkout@v1
41+
- name: Create artifact for testing
42+
uses: actions/upload-artifact@master
43+
with:
44+
name: test-artifacts
45+
path: ./

0 commit comments

Comments
 (0)