Skip to content

Release RustOwl

Release RustOwl #31

Workflow file for this run

name: Release RustOwl
on:
push:
tags:
- v*
jobs:
check:
uses: ${{ github.repository }}/.github/workflows/check.yml@main

Check failure on line 10 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yaml

Invalid workflow file

invalid value workflow reference: references to workflows must be prefixed with format 'owner/repository/' or './' for local workflows
extension:
runs-on: ubuntu-latest
needs:
- check
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: ./vscode
- name: Create VSIX
run: yarn build
working-directory: ./vscode
- name: Publish VSCode extension
run: echo "${{ secrets.VSCODE_TOKEN }}" | yarn vsce publish
working-directory: ./vscode
- name: Release
uses: softprops/action-gh-release@v2
with:
body: auto RustOwl update
files: |
./vscode/**/*.vsix
./rustowl/install.sh
draft: true