mirror of
https://github.com/nyanotech/recombobulator
synced 2025-12-16 11:30:21 -08:00
18 lines
374 B
YAML
18 lines
374 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- release
|
|
|
|
name: Publish Extension
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: npm install
|
|
- uses: nyanotech/vsce-action@53b5728fac290f6e1e722f0e5452f5d768a5c8fb
|
|
with:
|
|
args: "publish -p $VSCE_TOKEN"
|
|
env:
|
|
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
|