Skip to content
Merged
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
32 changes: 32 additions & 0 deletions .github/workflows/pccs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build PCCS Docker Image

on:
workflow_dispatch:
push:
branches:
- 'release/**'
- 'pre-release/**'

jobs:
build:
runs-on: ubuntu-latest

name: Build PCCS Docker Image

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Login to GAR
uses: docker/login-action@v2
with:
registry: us-docker.pkg.dev
username: _json_key
password: ${{ secrets.GCR_JSON_KEY }}

- name: Build and push pccs docker
run: |
cd docker
docker compose build pccs --no-cache
./push_image.sh ${{ github.ref_name }}
shell: bash
Loading