Skip to content

Commit

Permalink
update upload-artifact (#6)
Browse files Browse the repository at this point in the history
## Summary
* what changed and how?
* why are we changing it?

## Details
* info that couldn't fit into the summary
* relevant details; tricky parts
* anything else

Fixes full_issue_url
  • Loading branch information
alaviss authored Apr 21, 2023
1 parent 5b7b3d8 commit a6cc410
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/actions/upload-compiler/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ inputs:
workspace:
description: What to upload
required: false
default: '.'
default: "."

runs:
using: 'composite'
using: "composite"
steps:
- name: Package workspace
run: |
Expand All @@ -18,12 +18,12 @@ runs:
done < <(git ls-files -zmo)
tar cf '${{ runner.temp }}/compiler.tar' "${diff[@]}"
shell: bash
working-directory: '${{ inputs.source }}'
working-directory: "${{ inputs.source }}"

- uses: actions/upload-artifact@v3.0.0
- uses: actions/upload-artifact@v3.1.2
with:
name: compiler ${{ runner.os }}
path: '${{ runner.temp }}/compiler.tar'
path: "${{ runner.temp }}/compiler.tar"
# This action is only used to share data between jobs, there is no need
# to keep this artifact for long.
retention-days: 1

0 comments on commit a6cc410

Please sign in to comment.