-
Notifications
You must be signed in to change notification settings - Fork 5
62 lines (48 loc) · 1.91 KB
/
release-published.yaml
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
name: Release published
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
with:
# "ref" specifies the branch to check out.
# "github.event.release.target_commitish" is a global variable and specifies the branch the release targeted
ref: ${{ github.event.release.target_commitish }}
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: git config --global user.name "GitHub CD bot"
- run: git config --global user.email "[email protected]"
- run: npm ci --no-optional
# Version the module using the release tag name
- run: npm version ${{ github.event.release.tag_name }}
# Set up .npmrc file so the artifact can be published
- run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" > .npmrc
# Lint, test, build and publish changes
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# Push version changes back to github
- run: git push
env:
# The secret is passed automatically. Nothing to configure.
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Configure AWS credentials for uploading docs
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_DOCS_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.AWS_DOCS_SECRET_KEY }}
aws-region: us-east-1
# Generate all of the documentation for the default defs library
- run: node ./dist/index -t *all*
# Create typedoc information and upload
- run: npm run doc
- run: aws s3 sync ./docs "s3://j2-docs/$GITHUB_REPOSITORY"