-
Notifications
You must be signed in to change notification settings - Fork 3
203 lines (173 loc) · 5.29 KB
/
build.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
name: pids.geoconnex.us build
on:
workflow_dispatch:
push:
branches:
- "dev"
- "main"
paths:
- "namespaces/**"
jobs:
yourls-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Clone geoconnex.us
env:
GH_TOKEN: ${{ github.token }}
run: |
gh repo clone internetofwater/geoconnex.us
- name: Generate sitemap
uses: cgs-earth/sitemap-generator@0.2.0
with:
namespace_dir: ${{ github.workspace }}/namespaces
mysql-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Generate YOURLS Database
uses: cgs-earth/yourls-action@0.3.0
with:
namespace_dir: ${{ github.workspace }}/namespaces
cache-build:
runs-on: ubuntu-latest
needs: [containers-build]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache Yourls MySQL
uses: actions/download-artifact@v3
with:
name: yourls
path: build/yourls-mysql
- name: Cache Yourls Sitemap
uses: actions/download-artifact@v3
with:
name: sitemap
path: build/yourls
- name: Commit and Push Changes
uses: EndBug/add-and-commit@v9
with:
message: "Update cached files"
default_author: "github_actions"
containers-build:
runs-on: ubuntu-latest
needs: [yourls-build, mysql-build]
permissions:
packages: write
contents: read
strategy:
matrix:
image:
- yourls
- yourls-mysql
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker YOURLS Meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
${{ github.repository_owner }}/${{ matrix.image }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.image }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=pep440,pattern={{version}}
- name: Cache Yourls MySQL
uses: actions/download-artifact@v3
with:
name: yourls
path: build/yourls-mysql
- name: Cache Yourls Sitemap
uses: actions/download-artifact@v3
with:
name: sitemap
path: build/yourls
- name: Unzip Sitemap
working-directory: ./build/yourls
run: unzip -o sitemap -d sitemap
- name: Build and push
uses: docker/build-push-action@v4
with:
context: ./build/${{ matrix.image }}
file: ./build/${{ matrix.image }}/Dockerfile
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: linux/amd64, linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-build-gcp:
runs-on: ubuntu-latest
needs: [mysql-build]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Authenticate to Google Cloud
uses: google-github-actions/auth@v1
with:
credentials_json: "${{ secrets.GCP_CREDENTIALS_JSON }}"
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v1
- name: Cache Yourls MySQL
uses: actions/download-artifact@v3
with:
name: yourls
path: backup
- name: Upload backup to GCP Bucket
id: upload-files
uses: google-github-actions/upload-cloud-storage@v0
with:
path: backup
destination: yourls-data
gzip: false
parent: false
headers: |-
content-type: application/x-gzip
- name: Push to mysql
run: |-
gcloud sql import sql yourls-mysql-8 gs://yourls-data/yourls.sql.gz \
--database=yourls \
--project=${{ secrets.GCP_PROJECT_ID }}
cache-build-ref:
runs-on: ubuntu-latest
needs: [yourls-build]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache Yourls Sitemap
uses: actions/download-artifact@v3
with:
name: sitemap
path: tmp
- name: Unzip Sitemap
run: unzip -o tmp/sitemap -d sitemap
- name: Push backup to reference.geoconnex.us
uses: DevOpenWRT-Router/github-action-push-to-another-repository@main
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
with:
source-directory: sitemap
destination-repository-name: internetofwater/reference.geoconnex.us
target-branch: main
target-directory: sitemap
user-email: benjamin.miller.webb@gmail.com
user-name: webb-ben