Skip to content

Commit

Permalink
build: revert release updates
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Feb 21, 2023
1 parent 9a14e08 commit 5e03b90
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: echo "${{ steps.create_release.outputs.upload_url }}" > release_url.txt

- name: Save Release URL File for publish
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v1
with:
name: release_url
path: release_url.txt
Expand All @@ -74,10 +74,9 @@ jobs:
uses: actions/checkout@v3

- name: Load Release URL File from release job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v1
with:
name: release_url
path: release_url.txt

- name: Distribute
run: make dist
Expand All @@ -86,7 +85,7 @@ jobs:
id: get_release_info
shell: bash
run: |
value=`cat release_url.txt`
value=`cat release_url/release_url.txt`
echo ::set-output name=upload_url::$value
env:
TAG_REF_NAME: ${{ github.ref }}
Expand Down

0 comments on commit 5e03b90

Please sign in to comment.