Nash0x7E2 / awesome-flutter-snippets

Awesome Flutter Snippets is a collection snippets and shortcuts for commonly used Flutter functions and classes
https://marketplace.visualstudio.com/items?itemName=Nash.awesome-flutter-snippets
Apache License 2.0
161 stars 72 forks source link

feat: Perhaps an Github Action is needed to publish the extension #67

Open huang12zheng opened 1 year ago

huang12zheng commented 1 year ago

this issue ref to https://github.com/Nash0x7E2/awesome-flutter-snippets/issues/31 I might be able to help make that happen

huang12zheng commented 1 year ago
on:
  push:
  workflow_dispatch:

name: Deploy Extension
jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-node@v1
        with:
          node-version: 16
      - run: npm ci
      - name: Publish to Open VSX Registry
        uses: HaaLeo/publish-vscode-extension@v1
        with:
          pat: ${{ secrets.OPEN_VSX_TOKEN }}
      - name: Publish to Visual Studio Marketplace
        uses: HaaLeo/publish-vscode-extension@v1
        with:
          pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
          registryUrl: https://marketplace.visualstudio.com