-
Notifications
You must be signed in to change notification settings - Fork 0
159 lines (157 loc) · 4.8 KB
/
test-and-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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
name: test-and-release
on:
push:
branches:
- master
paths-ignore:
- ".husky/**"
- "adocs/**"
- "docs/**"
- "examples/**"
- "media/**"
- "scripts/**"
- "LICENSE"
pull_request:
paths-ignore:
- ".husky/**"
- "adocs/**"
- "docs/**"
- "examples/**"
- "media/**"
- "scripts/**"
- "LICENSE"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["lts/*", latest]
fail-fast: true
steps:
- uses: actions/checkout@main
- uses: pandoc/actions/setup@main
- uses: actions/setup-node@main
with:
node-version: ${{ matrix.node }}
check-latest: true
- name: Cache node modules
uses: actions/cache@main
env:
cache-name: cache-node-${{ matrix.node }}-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install
run: npm ci
- name: Tests
run: npm test
version-check:
runs-on: ubuntu-latest
needs: test
if: github.ref == 'refs/heads/master'
outputs:
changed: ${{ steps.check.outputs.changed }}
version: ${{ steps.check.outputs.version }}
steps:
- uses: actions/checkout@main
- id: check
uses: EndBug/version-check@v2
with:
diff-search: true
token: ${{ secrets.GITHUB_TOKEN }}
release:
runs-on: ubuntu-latest
needs: version-check
if: needs.version-check.outputs.changed == 'true'
steps:
- uses: actions/checkout@main
# https://github.com/rickstaa/action-create-tag/issues/10
- name: "Change perms on GITHUB_WORKSPACE"
run: |
sudo chown -R root:root $GITHUB_WORKSPACE
sudo chmod -R 0777 $GITHUB_WORKSPACE
- uses: rickstaa/action-create-tag@main
with:
tag: v${{ needs.version-check.outputs.version }}
message: v${{ needs.version-check.outputs.version }}
- uses: ncipollo/release-action@main
with:
name: v${{ needs.version-check.outputs.version }}
tag: v${{ needs.version-check.outputs.version }}
token: ${{ secrets.GITHUB_TOKEN }}
npm-publish:
runs-on: ubuntu-latest
needs: release
if: needs.version-check.outputs.changed == 'true'
steps:
- uses: actions/checkout@main
- uses: actions/setup-node@main
with:
node-version: "lts/*"
check-latest: true
registry-url: "https://registry.npmjs.org"
- uses: actions/cache@main
env:
cache-name: cache-node-${{ matrix.node }}-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install
run: |
set -e
npm ci
cp ./docs/README.md ./
- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
docker-push:
runs-on: ubuntu-latest
needs: release
if: needs.version-check.outputs.changed == 'true'
steps:
- uses: actions/checkout@main
- name: Docker meta
id: meta
uses: docker/metadata-action@master
with:
images: ${{ secrets.DOCKER_HUB_USERNAME }}/ascaid
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
- name: Login to Docker Hub
uses: docker/login-action@master
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@master
- name: Build and push
uses: docker/build-push-action@master
with:
context: .
file: ./Dockerfile
push: true
cache-from: type=gha
cache-to: type=gha,mode=max
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Docker Hub Description
uses: peter-evans/dockerhub-description@main
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
repository: ${{ secrets.DOCKER_HUB_USERNAME }}/ascaid
short-description: ${{ github.event.repository.description }}
readme-filepath: "./docs/README.md"