-
Notifications
You must be signed in to change notification settings - Fork 12
63 lines (49 loc) · 1.72 KB
/
release.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
on:
push:
tags:
- '*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Evaluate version
run: |
RELEASE_VERSION=${GITHUB_REF##*/v} && \
echo "RELEASE_VERSION=${RELEASE_VERSION}" >> $GITHUB_ENV && \
echo "Using version '${RELEASE_VERSION}'"
- name: Set version
run: npm -no-git-tag-version --allow-same-version -f version $RELEASE_VERSION
- name: Install dependencies
run: npm install
- name: Run linter
run: npm run lint
- name: Run unit tests
run: npm run test
- name: Build the extension
run: npm run extension:package
# keeping this two stubbed until we're ready to release
# until then we might want to add tags without actually releasing
# (e.g. to enable rollbacks down the line)
# TODO after repo is public:
# * change baseContentUrl across the repo
# * remove `echo` stubs
- name: Publish the extension
run: |
npx vsce verify-pat -p ${{ secrets.VSCE_MARKETPLACE_TOKEN }}
# echo npx vsce publish \
# -p ${{ secrets.VSCE_MARKETPLACE_TOKEN }} \
# --baseContentUrl https://bitbucket.org/atlassianlabs/atlascode/src/main/ \
# --packagePath atlascode-${GITHUB_REF##*/v}.vsix
- name: Publish to OpenVSX
run: |
npx ovsx verify-pat -p ${{ secrets.OPENVSX_KEY }}
# echo npx ovsx publish \
# -p ${{ secrets.OPENVSX_KEY }} \
# "atlascode-${GITHUB_REF##*/v}.vsix"