-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (43 loc) · 1.43 KB
/
build-library.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
name: Build library
on: { pull_request: {} }
concurrency:
group: build-library-${{ github.ref }}
cancel-in-progress: true
jobs:
build-library:
name: 👷♀️ Build library
runs-on: ubuntu-latest
container: golang:1.21-alpine
steps:
- name: Install build dependencies
run: apk add --no-cache alpine-sdk git bash npm python3 py3-pip
- name: Install yarn
run: npm install --global yarn
- name: Setup Dotnet
uses: actions/setup-dotnet@v3
with: { dotnet-version: 6 }
- name: Check out repository code
uses: actions/checkout@main
with: { fetch-depth: 0 }
- name: Treat repo as safe
run: git config --global --add safe.directory /__w/pulumi-spacelift/pulumi-spacelift
- name: Install pulumictl
uses: jaxxstorm/action-install-gh-release@v1
with:
repo: pulumi/pulumictl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install pulumi
uses: pulumi/actions@v4
- name: Tag version
run: |
CURRENTTAG=$(git describe --tags --abbrev=0)
git tag $CURRENTTAG${{ github.run_number }}
- name: Print version
run: pulumictl get version
- name: Build SDKs
run: make build_sdks
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Check if sdk is up to date
run: git diff --exit-code ./