Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/backend_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write

steps:
- name: Download Go
Expand All @@ -28,7 +31,6 @@ jobs:
uses: depot/build-push-action@v1
with:
project: f11hp4hlmg
token: ${{ secrets.DEPOT_TOKEN }}
context: .
file: ./Dockerfile_backend
push: false
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ee_backend_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write

steps:
- name: Download Go
Expand All @@ -28,7 +31,6 @@ jobs:
uses: depot/build-push-action@v1
with:
project: kcld4zgwzx
token: ${{ secrets.DEPOT_TOKEN }}
context: .
file: ./Dockerfile_backend_ee
push: false
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/staging-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ env:

jobs:
build-and-push:
# Skip for external contributors (fork PRs don't have access to secrets)
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -228,7 +230,7 @@ jobs:
summary:
needs: [build-and-push, update-helm-chart]
runs-on: ubuntu-latest
if: always()
if: always() && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository)
steps:
- name: Deployment Summary
run: |
Expand Down
Loading