Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieudutour committed Jan 13, 2020
1 parent 4f023ff commit 074bbcf
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/lona-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Pass variables to other actions (1/2)
run: |
mkdir -p .artifact-path
echo "::set-output name=upload_url,::${{ steps.create_release.outputs.upload_url }}\n::set-output name=new_version,::${{ steps.tag_version.outputs.new_version }}\n" > .artifact-path/variables.txt
echo -e "::set-output name=upload_url::${{ steps.create_release.outputs.upload_url }}\n::set-output name=new_version::${{ steps.tag_version.outputs.new_version }}\n" > .artifact-path/variables.txt
- name: Pass variables to other actions (2/2)
uses: actions/upload-artifact@v1
with:
Expand All @@ -86,7 +86,9 @@ jobs:
path: .artifact-path
- name: Get variables from build-documentation (2/2)
run: |
cat .artifact-path/variables.txt
while read p; do
echo "$p"
done <.artifact-path/variables.txt
id: variables

- name: Get the latest version of the repository
Expand Down Expand Up @@ -125,7 +127,9 @@ jobs:
path: .artifact-path
- name: Get variables from build-documentation (2/2)
run: |
cat .artifact-path/variables.txt
while read p; do
echo "$p"
done <.artifact-path/variables.txt
id: variables

- name: Get the latest version of the repository
Expand Down

0 comments on commit 074bbcf

Please sign in to comment.