Build all and make release on tag #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build all and make release on tag | |
on: | |
workflow_dispatch: | |
# push: | |
# 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 | |
run: | | |
npm install -g vsce | |
- name: Build VSIX | |
run: | | |
rm -f *.vsix | |
vsce package | |
- name: Upload VSIX | |
uses: actions/upload-artifact@v4 | |
with: | |
name: arduino-littlefs-upload.vsix | |
path: arduino-littlefs-upload*.vsix | |
make-release: | |
needs: build-vsix | |
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) | |
mkdir 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: | |
artifacts: "release/*" | |
draft: true | |
generateReleaseNotes: true |