-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (57 loc) · 1.58 KB
/
go.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Go
on:
push:
branches: [ master ]
paths:
- '**.go'
- 'go.mod'
- 'app.yaml'
pull_request:
branches: [ master ]
paths:
- '**.go'
- 'go.mod'
- 'app.yaml'
workflow_dispatch:
jobs:
build: # Build and test the Go application
runs-on: ubuntu-latest
permissions:
contents: 'read'
id-token: 'write'
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22
- name: Dependencies
run: go mod tidy
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
deploy: # Deploy to Google Cloud App Engine
# Only deploy on pushes to master branch (not PRs)
if: github.ref == 'refs/heads/master'
# Only deploy if the build job was successful
needs: build
runs-on: ubuntu-latest
permissions:
contents: 'read'
id-token: 'write'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Remove all unnecessary files
run: rm -rf .git .txt .md .yml .gitignore .github .idea .vscode resources/ *_test.go
- name: Auth to Google Cloud
uses: 'google-github-actions/auth@v2'
with:
project_id: 'liquipedia-calendar'
workload_identity_provider: ${{ secrets.GCLOUD_WORKLOAD_IDENTITY_FEDERATION }}
service_account: ${{ secrets.GCLOUD_SERVICE_ACCOUNT_DEPLOY }}
- name: Deploy to Google Cloud App Engine
uses: 'google-github-actions/deploy-appengine@v2'
with:
project_id: 'liquipedia-calendar'