This repository was archived by the owner on Jul 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
165 lines (144 loc) · 4.97 KB
/
Copy pathrelease.yml
File metadata and controls
165 lines (144 loc) · 4.97 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
---
name: Release
on:
workflow_dispatch:
inputs:
title:
description: "Release title (leave blank for tag)"
required: false
jobs:
prepare:
runs-on: ubuntu-latest
name: Prepare project for deployment
outputs:
new_version: ${{ steps.bumper.outputs.new_version }}
release_name: ${{ steps.release_name.outputs.value }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
fetch-depth: 0
ssh-key: ${{ secrets.DEPLOY_KEY }}
- name: Determine next SemVer
id: bumper
uses: tomerfi/version-bumper-action@2.0.1
- name: Create a release name
id: release_name
uses: actions/github-script@v7
with:
script: |
var retval = '${{ steps.bumper.outputs.next }}'
if ('${{ github.event.inputs.title }}') {
retval = retval.concat(' - ${{ github.event.inputs.title }}')
}
core.setOutput('value', retval)
- name: Update package with new version
run: |
npm version ${{ steps.bumper.outputs.next }} --no-git-tag-version
- name: Configure git
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
- name: Commit and push package modifications
run: |
git add package.json
git add package-lock.json
git commit -m "docs: updated package with ${{ steps.bumper.outputs.next }} [skip ci]"
git push
package:
needs: prepare
strategy:
matrix:
include:
- os: macos-latest
targets: "darwin-x64,darwin-arm64"
- os: ubuntu-latest
targets: "linux-x64,linux-arm64"
- os: windows-latest
targets: "win32-x64"
name: Create a VSIX package for targets [ ${{ matrix.targets }} ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Pull default branch from remote
run: git pull origin ${{ github.event.repository.default_branch }}
- name: Install node 20
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
- name: Install project modules
run: npm ci
- name: Create a VSIX package for targets [ ${{ matrix.targets }} ]
shell: bash
run: >
echo "${{ matrix.targets }}" | tr "," "\n" | while read -r target; do
npm run vsce:package -- \
--target ${target} \
--out ocm-vscode-extension-${target}-${{ needs.prepare.outputs.new_version }}.vsix
done
- name: Upload VSIX package as artifact
uses: actions/upload-artifact@v4
with:
name: vsix-${{ matrix.os }}
path: ./*.vsix
release:
runs-on: ubuntu-latest
name: Create a release
needs: [package, prepare]
steps:
- name: Checkout sources
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.OCM_BOT_PAT }}
- name: Install node 20
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
- name: Install project modules
run: npm ci
- name: Download VSIX package artifacts
uses: actions/download-artifact@v4
with:
path: ./vsix
- name: Create a new release
id: new_release
uses: actions/github-script@v7
with:
github-token: ${{ secrets.OCM_BOT_PAT }}
script: |
const repo_name = context.payload.repository.full_name
const response = await github.request('POST /repos/' + repo_name + '/releases', {
tag_name: '${{ needs.prepare.outputs.new_version }}',
name: '${{ needs.prepare.outputs.release_name }}',
generate_release_notes: true
})
core.setOutput('upload_url', response.data.upload_url)
- name: Create SHA256 checksums for the VSIX packages
working-directory: vsix
run: |
for pkg in ./**/*.vsix
do
sha_file=$(echo $pkg | sed 's/\.vsix/\.sha256/g')
sha256sum $pkg > $sha_file
done
- name: Upload packages and checksums as EA release assets
working-directory: vsix
run: |
for file in ./**/*.{vsix,sha256}
do
asset_name=$(basename $file)
upload_url=$(echo "${{ steps.new_release.outputs.upload_url }}" | sed "s/{?name,label}/?name=$asset_name/g")
curl --data-binary @"$file" \
-H "Authorization: token ${{ secrets.OCM_BOT_PAT }}" \
-H "Content-Type: application/octet-stream" \
$upload_url
done
- name: Publish VSIX packages to the marketplace
run: >
npm run vsce:publish --
--pat ${{ secrets.VSCE_PAT }}
--packagePath $(find ./vsix -iname *.vsix)