sync-build-release-all #310
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 12 * * *" | |
name: sync-build-release-all | |
jobs: | |
vscode-js-debug: | |
uses: ./.github/workflows/sync-build-release.yml | |
with: | |
upstream: microsoft/vscode-js-debug | |
repository: vscode-js-debug | |
tag_prefix: v1 | |
build: | | |
npm install --legacy-peer-deps | |
node_modules/.bin/gulp vsDebugServerBundle | |
mv dist extension | |
zip -r extension.vsix extension | |
secrets: | |
token: ${{ secrets.PUSH_TOKEN }} | |
vscode-python: | |
uses: ./.github/workflows/sync-build-release.yml | |
with: | |
upstream: microsoft/vscode-python | |
repository: vscode-python | |
build: | | |
npm install | |
./node_modules/.bin/gulp installPythonLibs | |
npm run package | |
mv ms-python-insiders.vsix extension.vsix | |
secrets: | |
token: ${{ secrets.PUSH_TOKEN }} | |
firefox-js-debug: | |
uses: ./.github/workflows/sync-build-release.yml | |
with: | |
upstream: firefox-devtools/vscode-firefox-debug | |
repository: vscode-firefox-debug | |
build: | | |
npm install --legacy-peer-deps | |
npm run build | |
npm run package -- -o extension.vsix | |
secrets: | |
token: ${{ secrets.PUSH_TOKEN }} | |
vscode-elixir-ls: | |
uses: ./.github/workflows/sync-build-release.yml | |
with: | |
upstream: elixir-lsp/vscode-elixir-ls | |
repository: vscode-elixir-ls | |
build: | | |
sudo apt-get install erlang-dev | |
sudo apt-get install elixir | |
npm install | |
mix deps.get | |
MIX_ENV=prod mix compile | |
npx vsce package -o extension.vsix | |
secrets: | |
token: ${{ secrets.PUSH_TOKEN }} | |
local-lua-debugger-vscode: | |
uses: ./.github/workflows/sync-build-release.yml | |
with: | |
upstream: tomblind/local-lua-debugger-vscode | |
repository: local-lua-debugger-vscode | |
build: | | |
npm install | |
npx vsce package -o extension.vsix | |
secrets: | |
token: ${{ secrets.PUSH_TOKEN }} |