Skip to content

Commit

Permalink
Fixes #200 - Fix trigger workflow (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Jan 20, 2025
1 parent 6463eb5 commit 61a937d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
username: ${{ secrets.GHCR_USERNAME }}
password: ${{ secrets.GHCR_PASSWORD }}
- name: Build and push image
run: |
docker build -f src/main/docker/Dockerfile -t ghcr.io/piranhacloud/start:latest .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v4
with:
token: ${{ secrets.GIT_PASSWORD }}
token: ${{ secrets.GIT_TOKEN }}
- name: Release from given branch with given version
run: |
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
Expand Down

0 comments on commit 61a937d

Please sign in to comment.