-
Notifications
You must be signed in to change notification settings - Fork 1
136 lines (116 loc) · 3.74 KB
/
release.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
name: Release docker image
on:
release:
types: [created]
push:
branches:
- master
- main
- next
- add_release_process
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
release:
runs-on: ubuntu-latest
permissions:
packages: write # required to publish docker image
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
CI: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Get frontend git cache key
run: |
echo "FRONT_CACHE_KEY=$(git log -n 1 --pretty=format:%h ./front-end)" >> $GITHUB_ENV
- name: Reconfigure git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf
ssh://git@github.com/
- name: Cache front
id: cache-front
uses: actions/cache@v4
with:
path: ./front-end/dist
key: front-${{ env.FRONT_CACHE_KEY }}
- name: Setup node for front
if: steps.cache-front.outputs.cache-hit != 'true'
uses: actions/setup-node@v4
with:
node-version-file: './front-end/.nvmrc'
cache: 'npm'
cache-dependency-path: './front-end/package-lock.json'
- name: Install front dependencies
if: steps.cache-front.outputs.cache-hit != 'true'
working-directory: ./front-end
run: |
npm ci --no-audit
- name: Build front
if: steps.cache-front.outputs.cache-hit != 'true'
working-directory: ./front-end
run: |
npm run build
- uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker dev
id: meta-dev
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-dev
- name: Build and push Docker image dev
uses: docker/build-push-action@v5
with:
context: .
file: .docker/Dockerfile
cache-from: type=gha
cache-to: type=gha,mode=max
push: true
tags: ${{ steps.meta-dev.outputs.tags }}
labels: ${{ steps.meta-dev.outputs.labels }}
target: dev
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: .docker/Dockerfile
cache-from: type=gha
cache-to: type=gha,mode=max
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
target: prod
attach_install_release:
runs-on: ubuntu-latest
needs: [ release ]
permissions:
contents: write # required to attach zip to release
if: ${{ (github.event_name == 'release' && github.event.action == 'created') }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Prepare install.zip
run: |
cd install
mkdir -p rgalt/var rgalt/public
cp * ./rgalt 2>/dev/null || :
cp -r ./conf ./rgalt
zip -r ../install.zip rgalt/
- name: Attach zip archive as release binary
uses: skx/github-action-publish-binaries@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: 'install.zip'