Skip to content

Commit

Permalink
Automate build and release process w/GH Actions (#43)
Browse files Browse the repository at this point in the history
Add a utility script and PACKAGE.md describing how to do a release.
    
The script will update the version number in the JSON, while a tag
push will now automate a build and release.  No reason to have the
VSIX as part of the repo anymore.
  • Loading branch information
earlephilhower committed Jun 21, 2024
1 parent cc9910e commit 3e48404
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions .github/workflows/make-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,30 @@ on:
# tags:
# - '*'


jobs:
build-vsix:
runs-on: ubuntu-20.04
steps:

- uses: actions/checkout@v4
with:
submodules: true

- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: ./package-lock.json
- name: Install code

- name: Install NPM dependencies
run: |
sudo snap install --classic code
npm install -g @vscode/vsce
npm install
- name: Build VSIX
run: |
rm -f *.vsix
vsce package
rm -f *.vsix
vsce package
- name: Upload VSIX
uses: actions/upload-artifact@v4
Expand All @@ -38,20 +42,27 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: write

steps:

- uses: actions/checkout@v4
with:
submodules: true

- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: .

- name: Renaming artifacts
run: |
rev=$(git rev-parse --short HEAD)
#ls -altR
mkdir release
mkdir tmp && cd tmp && unzip ../arduino-littlefs-upload.vsix.zip/*zip && mv */*vsix ../release/. && cd .. && rm -rf tmp
cp ./arduino-littlefs-upload.vsix/arduino-littlefs-upload-*.vsix ./release/.
#mkdir tmp && cd tmp && unzip ../arduino-littlefs-upload.vsix.zip/*zip && mv */*vsix ../release/. && cd .. && rm -rf tmp
ls -l release
- name: Drafting release
uses: ncipollo/release-action@v1
with:
Expand Down

0 comments on commit 3e48404

Please sign in to comment.