2021-07-30 02:01:46 +08:00
|
|
|
name: Publish on npm and brew
|
2020-05-08 15:08:30 +08:00
|
|
|
|
|
|
|
on:
|
2021-03-26 08:33:18 +08: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 15:08:30 +08:00
|
|
|
release:
|
2021-11-02 01:06:10 +08:00
|
|
|
types: [released]
|
2020-05-08 15:08:30 +08:00
|
|
|
|
2022-03-02 07:03:39 +08:00
|
|
|
# Cancel in-progress runs for pull requests when developers push
|
|
|
|
# additional changes, and serialize builds in branches.
|
|
|
|
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-concurrency-to-cancel-any-in-progress-job-or-run
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
|
|
|
|
2020-05-08 15:08:30 +08:00
|
|
|
jobs:
|
2021-04-17 03:47:24 +08:00
|
|
|
# NOTE: this job requires curl, jq and yarn
|
|
|
|
# All of them are included in ubuntu-latest.
|
2020-05-08 15:08:30 +08:00
|
|
|
npm:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-02 07:31:32 +08:00
|
|
|
- uses: actions/checkout@v3
|
2021-04-17 03:47:24 +08:00
|
|
|
|
2022-03-18 02:52:39 +08:00
|
|
|
- name: Get version
|
|
|
|
id: version
|
2022-03-23 07:45:59 +08:00
|
|
|
run: echo "::set-output name=version::$(jq -r .version package.json)"
|
2022-03-18 02:52:39 +08:00
|
|
|
|
|
|
|
- name: Download artifact
|
|
|
|
uses: dawidd6/action-download-artifact@v2
|
2022-02-04 04:54:36 +08:00
|
|
|
id: download
|
|
|
|
with:
|
2022-03-18 02:52:39 +08:00
|
|
|
branch: v${{ steps.version.outputs.version }}
|
2022-03-23 07:45:59 +08:00
|
|
|
workflow: ci.yaml
|
2022-03-18 02:52:39 +08:00
|
|
|
workflow_conclusion: completed
|
2022-02-04 04:54:36 +08:00
|
|
|
name: "npm-package"
|
|
|
|
path: release-npm-package
|
|
|
|
|
2022-01-25 06:33:42 +08:00
|
|
|
- name: Publish npm package and tag with "latest"
|
2022-01-22 07:28:56 +08:00
|
|
|
run: yarn publish:npm
|
2020-05-16 22:55:46 +08:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
2022-02-04 04:54:36 +08:00
|
|
|
NPM_ENVIRONMENT: "production"
|
2020-05-08 15:08:30 +08:00
|
|
|
|
2021-04-01 05:55:43 +08:00
|
|
|
homebrew:
|
|
|
|
needs: npm
|
2022-03-30 07:58:34 +08:00
|
|
|
runs-on: ubuntu-latest
|
2021-04-01 05:55:43 +08:00
|
|
|
steps:
|
2021-05-26 05:18:04 +08: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
|
|
|
|
|
2022-03-22 07:57:36 +08:00
|
|
|
- name: Checkout code-server
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2021-04-01 05:55:43 +08:00
|
|
|
- name: Configure git
|
|
|
|
run: |
|
2022-03-30 07:58:34 +08:00
|
|
|
git config user.name cdrci
|
|
|
|
git config user.email opensource@coder.com
|
2022-03-22 07:57:36 +08:00
|
|
|
|
2021-04-01 05:55:43 +08:00
|
|
|
- name: Bump code-server homebrew version
|
|
|
|
env:
|
|
|
|
HOMEBREW_GITHUB_API_TOKEN: ${{secrets.HOMEBREW_GITHUB_API_TOKEN}}
|
|
|
|
run: ./ci/steps/brew-bump.sh
|