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 d608b04 commit 0e2ea65Copy full SHA for 0e2ea65
.github/workflows/Handson7.yml
@@ -5,17 +5,14 @@ jobs:
5
name: Build Project
6
runs-on: ubuntu-latest
7
steps:
8
- - name: Checkout code
9
- uses: actions/checkout@v2
10
- - name: Install NPM dependencies
11
- run: npm install
12
- - name: Build project assets
13
- run: npm run build
+ - shell: bash
+ run: |
+ expr 3 + 7 > addition.txt
14
- name: Upload sample site
15
uses: actions/upload-artifact@v2
16
with:
17
name: sample-site
18
- path: .next/
+ path: addition.txt
19
release-project:
20
name: Release Project
21
@@ -24,7 +21,7 @@ jobs:
24
- name: Download site content
25
22
uses: actions/download-artifact@v2
26
23
27
- name: site-build
+ name: sample-site
28
- name: View content
29
run: ls -R
30
- name: Create GitHub release
0 commit comments