-
Notifications
You must be signed in to change notification settings - Fork 418
45 lines (43 loc) · 1.26 KB
/
build-and-push-release-gar.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Build and Push to GAR - Release
on:
# Only for testing purposes
pull_request:
branches:
- main
push:
tags:
- '**'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- id: 'auth'
uses: google-github-actions/auth@v2
with:
project_id: "vorvan"
credentials_json: "${{ secrets.GAR_PUSH_CREDENTIALS }}"
- name: Configure Google Cloud SDK
uses: google-github-actions/setup-gcloud@v2
- name: Configure Docker Client
run: |-
gcloud auth configure-docker ${{ secrets.GAR_REPOSITORY }} --quiet #authenticate to gar
- name: Clean Docker images
run: |-
echo "Available storage before cleaning:"
df -h
docker system prune --all --force
echo "Available storage:"
df -h
echo "Removing dotnet"
sudo rm -rf /usr/share/dotnet
echo "Available storage:"
df -h
- name: Docker Build Image
run: |-
docker build -t ${{ secrets.GAR_IMAGE_PATH }}:${{ github.ref_name }} .
- name: Push to GAR
run: |-
docker push ${{ secrets.GAR_IMAGE_PATH }}:${{ github.ref_name }}