diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-01 18:39:15 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-01 18:39:15 -0700 |
commit | 29096f502dee36c7bd68c0dc2dc26aa3006c38f9 (patch) | |
tree | 41e98b8ecbe799be8ba3cd0388283a9461f46c36 /.github/workflows/main.yaml | |
parent | a01571754d070fc1969255e177049ad0f8c7f849 (diff) | |
download | sncontinue-29096f502dee36c7bd68c0dc2dc26aa3006c38f9.tar.gz sncontinue-29096f502dee36c7bd68c0dc2dc26aa3006c38f9.tar.bz2 sncontinue-29096f502dee36c7bd68c0dc2dc26aa3006c38f9.zip |
reorder, don't push for now
Diffstat (limited to '.github/workflows/main.yaml')
-rw-r--r-- | .github/workflows/main.yaml | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 158b8ef2..872470d0 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -44,15 +44,33 @@ jobs: path: dist/* publish: - # needs: pyinstaller + needs: pyinstaller runs-on: ubuntu-latest - permissions: - contents: write + # permissions: + # contents: write steps: - name: Checkout uses: actions/checkout@v2 + - name: Download Linux build + uses: actions/download-artifact@v2 + with: + name: Linux Build + path: extension/server/exe/run-linux + + - name: Download macOS build + uses: actions/download-artifact@v2 + with: + name: macOS Build + path: extension/server/exe/run-darwin + + - name: Download Windows build + uses: actions/download-artifact@v2 + with: + name: Windows Build + path: extension/server/exe/run-windows.exe + - name: Use Node.js 19.0.0 uses: actions/setup-node@v3 with: @@ -90,38 +108,20 @@ jobs: cd extension npm run full-package - - name: Commit changes - run: | - git config --local user.email "action@github.com" - git config --local user.name "GitHub Action" - git commit -am "Update package.json version [skip ci]" + # - name: Commit changes + # run: | + # git config --local user.email "action@github.com" + # git config --local user.name "GitHub Action" + # git commit -am "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: 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 with: name: vsix-artifact path: extension/build/* - - - name: Download Linux build - uses: actions/download-artifact@v2 - with: - name: Linux Build - path: extension/server/exe/run-linux - - - name: Download macOS build - uses: actions/download-artifact@v2 - with: - name: macOS Build - path: extension/server/exe/run-darwin - - - name: Download Windows build - uses: actions/download-artifact@v2 - with: - name: Windows Build - path: extension/server/exe/run-windows.exe |