Skip to content

Commit

Permalink
Update learn-github-actions.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vaa2000 authored Feb 4, 2024
1 parent 87ab613 commit bc8a4f7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/learn-github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,15 @@ jobs:
node-version: '20'
- run: npm install -g bats
- run: bats -v
example-job:
name: Save output
runs-on: ubuntu-latest
steps:
- shell: bash
run: |
expr 1 + 1 > output.log
- name: Upload output file
uses: actions/upload-artifact@v4
with:
name: output-log-file
path: output.log

0 comments on commit bc8a4f7

Please sign in to comment.