This repository was archived by the owner on Jul 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
127 lines (127 loc) · 4.14 KB
/
Copy pathrelease.yml
File metadata and controls
127 lines (127 loc) · 4.14 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
name: release
on:
push:
branches:
- main
workflow_dispatch: {}
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
outputs:
latest_commit: ${{ steps.git_remote.outputs.latest_commit }}
env:
CI: "true"
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set git identity
run: |-
git config user.name "Automation"
git config user.email "github-actions@github.com"
- name: Setup Java 11
uses: actions/setup-java@v2
with:
distribution: 'zulu' # OpenJDK
java-version: '11'
- name: Install dependencies
run: cd core && yarn install --check-files --frozen-lockfile
- name: release
run: cd core && npx projen release
- name: Check for new commits
id: git_remote
run: echo ::set-output name=latest_commit::"$(git ls-remote origin -h ${{
github.ref }} | cut -f1)"
- name: Upload artifact
if: ${{ steps.git_remote.outputs.latest_commit == github.sha }}
uses: actions/upload-artifact@v2.1.1
with:
name: dist
path: core/dist
container:
image: jsii/superchain:1-bullseye-slim-node20
release_github:
name: Publish to GitHub Releases
needs: release
runs-on: ubuntu-latest
permissions:
contents: write
if: needs.release.outputs.latest_commit == github.sha
steps:
- name: Download build artifacts
uses: actions/download-artifact@v2
with:
name: dist
path: core
- name: Release
run: errout=$(mktemp); cd core && gh release create $(cat dist/releasetag.txt) -R
$GITHUB_REPOSITORY -F dist/changelog.md -t $(cat dist/releasetag.txt)
--target $GITHUB_REF 2> $errout && true; exitcode=$?; if [ $exitcode
-ne 0 ] && ! grep -q "Release.tag_name already exists" $errout; then
cat $errout; exit $exitcode; fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_REF: ${{ github.ref }}
release_npm:
name: Publish to npm
needs: release
runs-on: ubuntu-latest
permissions:
contents: read
if: needs.release.outputs.latest_commit == github.sha
steps:
- name: Download build artifacts
uses: actions/download-artifact@v2
with:
name: dist
path: core/dist
- name: Release
run: cd core && npx -p jsii-release@latest jsii-release-npm
env:
NPM_DIST_TAG: latest
NPM_REGISTRY: registry.npmjs.org
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
container:
image: jsii/superchain:1-bullseye-slim-node20
release_pypi:
name: Publish to PyPI
needs: release
runs-on: ubuntu-latest
permissions:
contents: read
if: needs.release.outputs.latest_commit == github.sha
steps:
- name: Download build artifacts
uses: actions/download-artifact@v2
with:
name: dist
path: core/dist
- name: Release
run: cd core && npx -p jsii-release@latest jsii-release-pypi
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
container:
image: jsii/superchain:1-bullseye-slim-node20
slack:
name: Publish to slack channel
needs:
- release_npm
- release_pypi
- release_github
runs-on: ubuntu-latest
steps:
- name: publish latest release
env:
SLACK_URL: ${{ secrets.SLACK_URL }}
run: |
curl -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/aws-samples/aws-analytics-reference-architecture/releases/latest > release.json
VERSION=$( jq -r '.name' release.json )
CONTENT=$( jq -r '.body' release.json )
jq -n --arg version "$VERSION" --arg content "$CONTENT" '{"release-version": $version, "release-content": $content}' > body.json
curl --location --request POST $SLACK_URL \
--header 'Content-Type: application/json' --data @body.json