Skip to content

Commit

Permalink
update download-artifact (#3)
Browse files Browse the repository at this point in the history
Mainly to test the new actions
  • Loading branch information
alaviss authored Apr 21, 2023
1 parent 58edc09 commit 5b7b3d8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/actions/download-compiler/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ inputs:
workspace:
description: Where to extract the compiler
required: false
default: '.'
default: "."

runs:
using: 'composite'
using: "composite"
steps:
- uses: actions/download-artifact@v3.0.0
- uses: actions/download-artifact@v3.0.2
with:
name: compiler ${{ runner.os }}
path: '${{ runner.temp }}'
path: "${{ runner.temp }}"

- name: Unpack the workspace
run: tar xf '${{ runner.temp }}/compiler.tar'
shell: bash
working-directory: '${{ inputs.workspace }}'
working-directory: "${{ inputs.workspace }}"

0 comments on commit 5b7b3d8

Please sign in to comment.