Skip to content

Include usage

Include usage #38

Workflow file for this run

name: SQFLint-VSCode CI Release
on:
push:
tags:
- '*.*.*'
jobs:
build:

Check failure on line 9 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

You have an error in your yaml syntax on line 9
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: client
steps:
- name: Checkout
uses: actions/checkout@v2
# SQFLint build disabled for now
# with:
# submodules: 'recursive'
#- name: Build SQFLint with Docker image
# uses: ./sqflint/.github/actions/sqflint-build-action
# env:
# ANT_BUILD_DIR: sqflint
- name: Use Node.js 14.19.1
uses: actions/setup-node@v3
with:
node-version: 14.19.1
cache: npm
- run: npm install -g npm@latest
- run: npm run package
- name: Store vsix
uses: actions/upload-artifact@v2
with:
name: sqflint
path: client/sqflint-*.vsix
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: publish
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
run: |
npx vsce publish -p $VSCE_TOKEN ${{ steps.get_version.outputs.VERSION }}