-
Notifications
You must be signed in to change notification settings - Fork 657
51 lines (48 loc) · 1.58 KB
/
cd.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
name: CD
on:
push:
branches:
- stable
permissions:
contents: write
id-token: write
packages: write
jobs:
build:
name: Build, Test, and Deploy
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
cache: npm
cache-dependency-path: '**/package.json'
- run: npm install
- run: npm run bootstrap
- run: npm run publish:ci
env:
GIT_AUTHOR_NAME: Ionitron
GIT_AUTHOR_EMAIL: [email protected]
GIT_COMMITTER_NAME: Ionitron
GIT_COMMITTER_EMAIL: [email protected]
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Sleep while npm takes its time
run: sleep 20
- name: GitHub Container Registry Login
run: echo ${{ github.token }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Build Container
run: |
docker build \
--build-arg IONIC_CLI_VERSION=$(npm info @ionic/cli dist-tags.latest) \
--tag ghcr.io/${{ github.repository }}:latest \
--tag ghcr.io/${{ github.repository}}:$(npm info @ionic/cli dist-tags.latest) \
.
- name: Push Container as latest
run: docker push ghcr.io/${{ github.repository }}:latest
- name: Push Container as version
run: docker push ghcr.io/${{ github.repository }}:$(npm info @ionic/cli dist-tags.latest)