-
-
Notifications
You must be signed in to change notification settings - Fork 2
52 lines (52 loc) · 1.91 KB
/
main.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
name: Fetch CloudFormation resource specification and update this VSCode extension.
on:
workflow_dispatch:
schedule:
- cron: "20 11 * * 5" # At 11:20 on Friday.
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "16"
- name: Install Python
run: |
set -x -e
sudo apt install python3-setuptools
python3 -m pip install --upgrade pip && pip3 install -r src/requirements.txt
- name: Check for update and create snippets if needed
run: |
echo "checking for update"
python3 src/update-cdk-construct-snippets.py
- name: Commit changes to Github
run: |
set -x -e
git config --global user.name 'Github Actions'
git config --global user.email 'danny@towardsthecloud.com'
npm version minor --force --no-git-tag-version
package_version=$(cat package.json|grep 'version":'|sed 's/[",]//g'|awk '{print $2}')
cfn_release_rss_summary=$(python3 src/feed.py)
git commit -am "$cfn_release_rss_summary"
git tag $package_version
gitchangelog|tee "CHANGELOG.md"
git commit -am "Changelog version: $package_version"
git push
git push origin --tags
- name: Publish to Visual Studio Marketplace
uses: HaaLeo/publish-vscode-extension@v1
id: publishToVSCE
with:
pat: ${{ secrets.VSCE_TOKEN }}
registryUrl: https://marketplace.visualstudio.com
# - name: Publish to Open VSX Registry
# uses: HaaLeo/publish-vscode-extension@v1
# with:
# pat: ${{ secrets.OPEN_VSX_TOKEN }}
# extensionFile: ${{ steps.publishToVSCE.outputs.vsixPath }}