Skip to content

Release RustOwl

Release RustOwl #17

Workflow file for this run

name: Release RustOwl
on:
push:
tags:
- v*
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
extension:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: yarn install --frozen-locked
working-directory: ./rustowl-vscode
- name: Create VSIX
run: yes | yarn build
working-directory: ./rustowl-vscode
- name: Create server zip
run: zip rustowl-server.zip ./rustowl-server/**/*
- name: Release
uses: softprops/action-gh-release@v2
with:
body: auto RustOwl update
files: "./rustowl-vscode/**/rustowl-*.vsix,./rustowl-server.zip,./rustowl-server/install.sh"