2021-07-29 18:01:46 +00:00
|
|
|
name: Publish on npm and brew
|
2020-05-08 07:08:30 +00:00
|
|
|
|
|
|
|
on:
|
2021-03-26 00:33:18 +00:00
|
|
|
# Shows the manual trigger in GitHub UI
|
|
|
|
# helpful as a back-up in case the GitHub Actions Workflow fails
|
|
|
|
workflow_dispatch:
|
|
|
|
|
2020-05-08 07:08:30 +00:00
|
|
|
release:
|
2021-11-01 17:06:10 +00:00
|
|
|
types: [released]
|
2020-05-08 07:08:30 +00:00
|
|
|
|
|
|
|
jobs:
|
2021-04-16 19:47:24 +00:00
|
|
|
# NOTE: this job requires curl, jq and yarn
|
|
|
|
# All of them are included in ubuntu-latest.
|
2020-05-08 07:08:30 +00:00
|
|
|
npm:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-04-16 19:47:24 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2020-05-08 07:08:30 +00:00
|
|
|
- name: Run ./ci/steps/publish-npm.sh
|
2021-04-16 19:47:24 +00:00
|
|
|
run: ./ci/steps/publish-npm.sh
|
2020-05-16 14:55:46 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
2020-05-08 07:08:30 +00:00
|
|
|
|
2021-03-31 21:55:43 +00:00
|
|
|
homebrew:
|
|
|
|
# The newest version of code-server needs to be available on npm when this runs
|
|
|
|
# otherwise, it will 404 and won't open a PR to bump version on homebrew/homebrew-core
|
|
|
|
needs: npm
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
2021-05-25 21:18:04 +00:00
|
|
|
# Ensure things are up to date
|
|
|
|
# Suggested by homebrew maintainers
|
|
|
|
# https://github.com/Homebrew/discussions/discussions/1532#discussioncomment-782633
|
|
|
|
- name: Set up Homebrew
|
|
|
|
id: set-up-homebrew
|
|
|
|
uses: Homebrew/actions/setup-homebrew@master
|
|
|
|
|
2021-03-31 21:55:43 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Configure git
|
|
|
|
run: |
|
|
|
|
git config user.name github-actions
|
|
|
|
git config user.email github-actions@github.com
|
|
|
|
- name: Bump code-server homebrew version
|
|
|
|
env:
|
|
|
|
HOMEBREW_GITHUB_API_TOKEN: ${{secrets.HOMEBREW_GITHUB_API_TOKEN}}
|
|
|
|
run: ./ci/steps/brew-bump.sh
|