2022-08-19 08:40:00 -07:00
name : Publish code-server
2020-05-08 03:08:30 -04:00
on :
2021-03-25 17:33:18 -07:00
# Shows the manual trigger in GitHub UI
# helpful as a back-up in case the GitHub Actions Workflow fails
workflow_dispatch :
2022-11-08 15:45:01 -07:00
inputs :
version :
description : The version to publish (include "v", i.e. "v4.9.1").
type : string
required : true
2021-03-25 17:33:18 -07:00
2020-05-08 03:08:30 -04:00
release :
2021-11-01 10:06:10 -07:00
types : [ released]
2020-05-08 03:08:30 -04:00
2022-03-01 15: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 03:08:30 -04:00
jobs :
2021-04-17 01:17:24 +05:30
# NOTE: this job requires curl, jq and yarn
# All of them are included in ubuntu-latest.
2020-05-08 03:08:30 -04:00
npm :
runs-on : ubuntu-latest
steps :
2022-08-19 08:40:00 -07:00
- name : Checkout code-server
2022-08-23 08:29:22 -07:00
uses : actions/checkout@v3
2021-04-17 01:17:24 +05:30
2022-11-01 10:16:30 -07:00
- name : Download npm package from release artifacts
2022-11-09 14:03:07 -07:00
uses : robinraju/release-downloader@v1.6
2022-02-03 13:54:36 -07:00
with :
2022-11-01 10:16:30 -07:00
repository : "coder/code-server"
2022-11-08 15:45:01 -07:00
tag : ${{ github.event.inputs.version || github.ref_name }}
2022-11-01 10:16:30 -07:00
fileName : "package.tar.gz"
out-file-path : "release-npm-package"
2022-02-03 13:54:36 -07:00
2022-11-08 15:45:01 -07:00
# NOTE@jsjoeio - we do this so we can strip out the v
# i.e. v4.9.1 -> 4.9.1
- name : Get and set VERSION
run : |
TAG="${{ github.event.inputs.version || github.ref_name }}"
echo "VERSION=${TAG#v}" >> $GITHUB_ENV
2022-01-24 15:33:42 -07:00
- name : Publish npm package and tag with "latest"
2022-01-21 16:28:56 -07:00
run : yarn publish:npm
2020-05-16 10:55:46 -04:00
env :
2022-11-08 15:45:01 -07:00
VERSION : ${{ env.VERSION }}
2020-05-16 10:55:46 -04:00
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
2022-02-03 13:54:36 -07:00
NPM_ENVIRONMENT : "production"
2020-05-08 03:08:30 -04:00
2021-03-31 14:55:43 -07:00
homebrew :
needs : npm
2022-03-29 16:58:34 -07:00
runs-on : ubuntu-latest
2021-03-31 14:55:43 -07:00
steps :
2021-05-25 14:18:04 -07: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-21 16:57:36 -07:00
- name : Checkout code-server
uses : actions/checkout@v3
2021-03-31 14:55:43 -07:00
- name : Configure git
run : |
2022-05-06 15:31:03 -07:00
git config --global user.name cdrci
git config --global user.email opensource@coder.com
2022-03-21 16:57:36 -07:00
2022-11-08 15:45:01 -07:00
# NOTE@jsjoeio - we do this so we can strip out the v
# i.e. v4.9.1 -> 4.9.1
- name : Get and set VERSION
run : |
TAG="${{ github.event.inputs.version || github.ref_name }}"
echo "VERSION=${TAG#v}" >> $GITHUB_ENV
2021-03-31 14:55:43 -07:00
- name : Bump code-server homebrew version
env :
2022-11-08 15:45:01 -07:00
VERSION : ${{ env.VERSION }}
2021-03-31 14:55:43 -07:00
HOMEBREW_GITHUB_API_TOKEN : ${{secrets.HOMEBREW_GITHUB_API_TOKEN}}
2022-11-08 15:45:01 -07:00
2021-03-31 14:55:43 -07:00
run : ./ci/steps/brew-bump.sh
2022-08-18 09:22:09 -07:00
aur :
needs : npm
runs-on : ubuntu-latest
timeout-minutes : 10
env :
GH_TOKEN : ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}
2022-11-08 15:45:01 -07:00
2022-08-18 09:22:09 -07:00
steps :
# We need to checkout code-server so we can get the version
- name : Checkout code-server
uses : actions/checkout@v3
with :
fetch-depth : 0
path : "./code-server"
- name : Checkout code-server-aur repo
uses : actions/checkout@v3
with :
repository : "cdrci/code-server-aur"
token : ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}
2022-09-09 15:50:21 -07:00
ref : "master"
2022-08-18 09:22:09 -07:00
2022-10-28 10:44:00 -07:00
- name : Merge in master
run : |
git remote add upstream https://github.com/coder/code-server-aur.git
git fetch upstream
git merge upstream/master
2022-08-18 09:22:09 -07:00
- name : Configure git
run : |
git config --global user.name cdrci
git config --global user.email opensource@coder.com
2022-11-08 15:45:01 -07:00
# NOTE@jsjoeio - we do this so we can strip out the v
# i.e. v4.9.1 -> 4.9.1
- name : Get and set VERSION
run : |
TAG="${{ github.event.inputs.version || github.ref_name }}"
echo "VERSION=${TAG#v}" >> $GITHUB_ENV
2022-08-18 09:22:09 -07:00
- name : Validate package
uses : hapakaien/archlinux-package-action@v2
with :
2022-11-08 15:45:01 -07:00
pkgver : ${{ env.VERSION }}
2022-08-18 09:22:09 -07:00
updpkgsums : true
srcinfo : true
- name : Open PR
# We need to git push -u otherwise gh will prompt
# asking where to push the branch.
run : |
git checkout -b update-version-${{ steps.version.outputs.version }}
git add .
git commit -m "chore: updating version to ${{ steps.version.outputs.version }}"
git push -u origin $(git branch --show)
gh pr create --repo coder/code-server-aur --title "chore: bump version to ${{ steps.version.outputs.version }}" --body "PR opened by @$GITHUB_ACTOR" --assignee $GITHUB_ACTOR
2022-08-19 08:40:00 -07:00
docker :
runs-on : ubuntu-20.04
steps :
- name : Checkout code-server
uses : actions/checkout@v3
- name : Set up QEMU
uses : docker/setup-qemu-action@v2
- name : Set up Docker Buildx
uses : docker/setup-buildx-action@v2
- name : Login to Docker Hub
uses : docker/login-action@v2
with :
username : ${{ secrets.DOCKER_USERNAME }}
password : ${{ secrets.DOCKER_PASSWORD }}
- name : Login to GHCR
uses : docker/login-action@v2
with :
registry : ghcr.io
username : ${{ github.actor }}
password : ${{ secrets.GITHUB_TOKEN }}
2022-11-08 15:45:01 -07:00
# NOTE@jsjoeio - we do this so we can strip out the v
# i.e. v4.9.1 -> 4.9.1
- name : Get and set VERSION
run : |
TAG="${{ github.event.inputs.version || github.ref_name }}"
echo "VERSION=${TAG#v}" >> $GITHUB_ENV
2022-08-19 08:40:00 -07:00
- name : Download release artifacts
2022-11-09 14:03:07 -07:00
uses : robinraju/release-downloader@v1.6
2022-08-19 08:40:00 -07:00
with :
repository : "coder/code-server"
2022-11-08 15:45:01 -07:00
tag : v${{ env.VERSION }}
2022-08-19 08:40:00 -07:00
fileName : "*.deb"
out-file-path : "release-packages"
- name : Publish to Docker
run : yarn publish:docker
env :
2022-11-08 15:45:01 -07:00
VERSION : ${{ env.VERSION }}
2022-08-19 08:40:00 -07:00
GITHUB_TOKEN : ${{ github.token }}