Skip to content

Commit

Permalink
debug 18
Browse files Browse the repository at this point in the history
  • Loading branch information
edgaraswallee committed Jan 31, 2024
1 parent 77fa767 commit 0ea7e02
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,19 @@ jobs:
with:
go-version: 1.17

- name: Get Latest Release
id: get_latest_release
run: |
latest_release=$(curl -sSL -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
"https://api.github.com/repos/wallee-payment/prestashop-1.6/releases/latest" | \
jq -r .tag_name)
echo "Latest release: $latest_release"
echo "::set-output name=latest_release::$latest_release"
- name: Upload binaries to GitHub release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: wallee.zip
asset_name: wallee.zip
tag: '1.2.38'
tag: ${{ steps.get_latest_release.outputs.latest_release }}
3 changes: 1 addition & 2 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0ea7e02

Please sign in to comment.