-
Notifications
You must be signed in to change notification settings - Fork 0
103 lines (84 loc) · 3.17 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
name: Release
on:
push:
branches:
- main
jobs:
nodejs:
name: Node.js
runs-on: ubuntu-latest
outputs:
published: ${{ steps.changeset.outputs.published }}
publishedPackages: ${{ steps.changeset.outputs.publishedPackages }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install Node.js dependencies
run: pnpm install
- name: Create PR or publish packages
id: changeset
uses: changesets/action@v1
with:
publish: pnpm changeset publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
ghcr:
name: GitHub Container Registry
runs-on: ubuntu-latest
needs: nodejs
strategy:
matrix:
package: ${{ fromJson(needs.nodejs.outputs.publishedPackages) }}
if: ${{ needs.nodejs.outputs.published == 'true' }}
permissions:
packages: write
contents: read
env:
IMAGE_NAME: ""
steps:
- name: Set CLI image name
if: ${{ matrix.package.name == '@guidanoli/cmioc-cli' }}
run: echo "IMAGE_NAME=cmioc" >> $GITHUB_ENV
- uses: actions/checkout@v4
if: ${{ env.IMAGE_NAME != '' }}
- name: Set up Docker Buildx
if: ${{ env.IMAGE_NAME != '' }}
id: setup_buildx
uses: docker/setup-buildx-action@v3
- name: Extract metadata from Git refs and GitHub events
if: ${{ env.IMAGE_NAME != '' }}
id: extract_metadata
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}
tags: |
type=semver,pattern={{version}},value=${{ matrix.package.version }}
- name: Login to GitHub Container Registry
if: ${{ env.IMAGE_NAME != '' }}
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build machine image and push it to GitHub Container Registry
if: ${{ env.IMAGE_NAME != '' }}
uses: docker/build-push-action@v6
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
builder: ${{ steps.setup_buildx.outputs.name }}
tags: ${{ steps.extract_metadata.outputs.tags }}
labels: ${{ steps.extract_metadata.lables.labels }}
cache-from: type=gha,scope=ubuntu
cache-to: type=gha,mode=max,scope=ubuntu