diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-02 15:41:10 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-02 15:41:10 -0700 |
commit | f18ddbc962059a6df1f8cc858d1ac88d9ec04887 (patch) | |
tree | d3a2a7f35d6277ecd0d5fddd45e0052006d3abb9 /.github | |
parent | 69eba15d288e123ddcc6f307d4828192c3bf9f46 (diff) | |
download | sncontinue-f18ddbc962059a6df1f8cc858d1ac88d9ec04887.tar.gz sncontinue-f18ddbc962059a6df1f8cc858d1ac88d9ec04887.tar.bz2 sncontinue-f18ddbc962059a6df1f8cc858d1ac88d9ec04887.zip |
attempting alternative solution to import config
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yaml | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 7787ddad..365f7b7d 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -107,19 +107,18 @@ jobs: run: | cd extension npm run package - npx vsce publish patch -p ${{ secrets.VSCE_TOKEN }} - - - name: Commit changes - run: | - git config --local user.email "action@github.com" - git config --local user.name "GitHub Action" - git commit -am "ci: 💚 Update package.json version [skip ci]" - - - name: Push changes - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: ${{ github.ref }} + # npx vsce publish patch -p ${{ secrets.VSCE_TOKEN }} + # - name: Commit changes + # run: | + # git config --local user.email "action@github.com" + # git config --local user.name "GitHub Action" + # git commit -am "ci: 💚 Update package.json version [skip ci]" + + # - name: Push changes + # uses: ad-m/github-push-action@master + # with: + # github_token: ${{ secrets.GITHUB_TOKEN }} + # branch: ${{ github.ref }} - name: Upload .vsix artifact uses: actions/upload-artifact@v2 |