Skip to content

Commit

Permalink
fix: ambigous redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
SrIzan10 committed Dec 9, 2023
1 parent 7991a72 commit 5cac3dc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,13 @@ jobs:
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Get latest version
run: |
curl -s https://api.github.com/repos/pocketbase/pocketbase/releases/latest \
echo "VERSION=$(curl -s https://api.github.com/repos/pocketbase/pocketbase/releases/latest \
| grep "tag_name" \
| awk '{print $2}' \
| tr -d '"' \
| tr -d ',' \
| tr -d 'v' \
| tr -d ' ' \
>> $VERSION
| tr -d ' ')" >> $GITHUB_ENV
- name: Build and push
uses: docker/build-push-action@v5
with:
Expand Down

0 comments on commit 5cac3dc

Please sign in to comment.