-
Notifications
You must be signed in to change notification settings - Fork 18
111 lines (107 loc) · 3.84 KB
/
ci.yaml
File metadata and controls
111 lines (107 loc) · 3.84 KB
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
name: Main CI
on:
push:
branches: ["main", "next"]
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
if: github.event.head_commit.author.name != 'github-actions[bot]'
steps:
- uses: actions/checkout@v6
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
package_json_file: "package.json"
- uses: actions/setup-node@v6
with:
node-version: "20"
cache: "pnpm"
- name: Install next dependencies
run: cd next && pnpm i --frozen-lockfile
- name: Install legacy dependencies
run: cd legacy && pnpm i --frozen-lockfile
- name: Build global app
run: pnpm build
- uses: actions/upload-artifact@v4
with:
name: pogues
path: dist
check_if_version_upgraded:
needs: ["build"]
runs-on: ubuntu-latest
if: |
github.event_name == 'push' ||
github.event.pull_request.head.repo.owner.login == github.event.pull_request.base.repo.owner.login
outputs:
version: ${{ steps.version.outputs.prop }}
is_version_changed: ${{ steps.check.outputs.exists == 'false' }}
is_pre_release: ${{ contains(steps.version.outputs.prop, '-rc' ) }}
steps:
- uses: actions/checkout@v4
- id: version
uses: notiz-dev/github-action-json-property@release
with:
path: "package.json"
prop_path: "version"
## we check if repo contains already this tag, if not version, has changed
- uses: mukunku/tag-exists-action@v1.6.0
id: check
with:
tag: ${{ steps.version.outputs.prop }}
docker_pogues:
needs: check_if_version_upgraded
if: |
(github.event_name == 'push' || needs.check_if_version_upgraded.outputs.is_pre_release == 'true') &&
needs.check_if_version_upgraded.outputs.is_version_changed == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: actions/download-artifact@v4
with:
name: pogues
path: dist
- uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
context: "."
push: true
tags: |
inseefr/pogues:latest,
inseefr/pogues:${{ needs.check_if_version_upgraded.outputs.version }}
release:
runs-on: ubuntu-latest
needs: check_if_version_upgraded
# We create release only if the version in the package.json have been upgraded and this CI is running against the main branch.
# We allow branches with a PR open on main to publish pre-release (x.y.z-rc.u) but not actual releases.
if: |
(github.event_name == 'push' || needs.check_if_version_upgraded.outputs.is_pre_release == 'true') &&
needs.check_if_version_upgraded.outputs.is_version_changed == 'true'
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- uses: actions/download-artifact@v4
with:
name: pogues
path: dist
- name: Zip bundle
run: cd dist && zip -r ../pogues.zip ./*
- uses: softprops/action-gh-release@v2
with:
name: Release ${{ needs.check_if_version_upgraded.outputs.version }}
tag_name: ${{ needs.check_if_version_upgraded.outputs.version }}
target_commitish: ${{ github.head_ref || github.ref }}
generate_release_notes: true
draft: false
prerelease: ${{ needs.check_if_version_upgraded.outputs.is_pre_release == 'true' }}
files: ./pogues.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}