2022-08-19 17:40:00 +02:00
name : Publish code-server
2020-05-08 09:08:30 +02:00
on :
2021-03-26 01:33:18 +01: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 23:45:01 +01:00
inputs :
version :
description : The version to publish (include "v", i.e. "v4.9.1").
type : string
required : true
2021-03-26 01:33:18 +01:00
2020-05-08 09:08:30 +02:00
release :
2021-11-01 18:06:10 +01:00
types : [ released]
2020-05-08 09:08:30 +02:00
2022-03-02 00:03:39 +01: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 09:08:30 +02:00
jobs :
2021-04-16 21:47:24 +02:00
# NOTE: this job requires curl, jq and yarn
# All of them are included in ubuntu-latest.
2020-05-08 09:08:30 +02:00
npm :
runs-on : ubuntu-latest
steps :
2022-08-19 17:40:00 +02:00
- name : Checkout code-server
2022-08-23 17:29:22 +02:00
uses : actions/checkout@v3
2021-04-16 21:47:24 +02:00
2023-03-04 08:23:21 +01:00
- name : Install Node.js v16
uses : actions/setup-node@v3
with :
node-version : "16"
cache : "yarn"
2022-11-01 18:16:30 +01:00
- name : Download npm package from release artifacts
2023-01-03 18:28:58 +01:00
uses : robinraju/release-downloader@v1.7
2022-02-03 21:54:36 +01:00
with :
2022-11-01 18:16:30 +01:00
repository : "coder/code-server"
2022-11-08 23:45:01 +01:00
tag : ${{ github.event.inputs.version || github.ref_name }}
2022-11-01 18:16:30 +01:00
fileName : "package.tar.gz"
out-file-path : "release-npm-package"
2022-02-03 21:54:36 +01:00
2022-11-08 23:45:01 +01: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 23:33:42 +01:00
- name : Publish npm package and tag with "latest"
2022-01-22 00:28:56 +01:00
run : yarn publish:npm
2020-05-16 16:55:46 +02:00
env :
2022-11-08 23:45:01 +01:00
VERSION : ${{ env.VERSION }}
2020-05-16 16:55:46 +02:00
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
2022-02-03 21:54:36 +01:00
NPM_ENVIRONMENT : "production"
2020-05-08 09:08:30 +02:00
2021-03-31 23:55:43 +02:00
homebrew :
needs : npm
2022-03-30 01:58:34 +02:00
runs-on : ubuntu-latest
2021-03-31 23:55:43 +02:00
steps :
2021-05-25 23:18:04 +02: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 00:57:36 +01:00
- name : Checkout code-server
uses : actions/checkout@v3
2021-03-31 23:55:43 +02:00
- name : Configure git
run : |
2022-05-07 00:31:03 +02:00
git config --global user.name cdrci
git config --global user.email opensource@coder.com
2022-03-22 00:57:36 +01:00
2022-11-08 23:45:01 +01: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 23:55:43 +02:00
- name : Bump code-server homebrew version
env :
2022-11-08 23:45:01 +01:00
VERSION : ${{ env.VERSION }}
2021-03-31 23:55:43 +02:00
HOMEBREW_GITHUB_API_TOKEN : ${{secrets.HOMEBREW_GITHUB_API_TOKEN}}
2022-11-08 23:45:01 +01:00
2021-03-31 23:55:43 +02:00
run : ./ci/steps/brew-bump.sh
2022-08-18 18:22:09 +02:00
aur :
needs : npm
runs-on : ubuntu-latest
timeout-minutes : 10
env :
GH_TOKEN : ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}
2022-11-08 23:45:01 +01:00
2022-08-18 18:22:09 +02: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-10 00:50:21 +02:00
ref : "master"
2022-08-18 18:22:09 +02:00
2022-10-28 19:44:00 +02: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 18:22:09 +02:00
- name : Configure git
run : |
git config --global user.name cdrci
git config --global user.email opensource@coder.com
2022-11-08 23:45:01 +01: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 18:22:09 +02:00
- name : Validate package
uses : hapakaien/archlinux-package-action@v2
2022-12-12 22:24:06 +01:00
env :
VERSION : ${{ env.VERSION }}
2022-08-18 18:22:09 +02:00
with :
2022-11-08 23:45:01 +01:00
pkgver : ${{ env.VERSION }}
2022-08-18 18:22:09 +02:00
updpkgsums : true
srcinfo : true
- name : Open PR
# We need to git push -u otherwise gh will prompt
# asking where to push the branch.
2022-12-22 20:58:20 +01:00
env :
VERSION : ${{ env.VERSION }}
2022-08-18 18:22:09 +02:00
run : |
2022-12-22 20:58:20 +01:00
git checkout -b update-version-${{ env.VERSION }}
2023-03-04 08:23:21 +01:00
git add .
2022-12-22 20:58:20 +01:00
git commit -m "chore: updating version to ${{ env.VERSION }}"
2022-08-18 18:22:09 +02:00
git push -u origin $(git branch --show)
2022-12-22 20:58:20 +01:00
gh pr create --repo coder/code-server-aur --title "chore: bump version to ${{ env.VERSION }}" --body "PR opened by @$GITHUB_ACTOR" --assignee $GITHUB_ACTOR
2022-08-19 17:40:00 +02: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 23:45:01 +01: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 17:40:00 +02:00
- name : Download release artifacts
2023-01-03 18:28:58 +01:00
uses : robinraju/release-downloader@v1.7
2022-08-19 17:40:00 +02:00
with :
repository : "coder/code-server"
2022-11-08 23:45:01 +01:00
tag : v${{ env.VERSION }}
2022-08-19 17:40:00 +02:00
fileName : "*.deb"
out-file-path : "release-packages"
- name : Publish to Docker
2023-03-04 08:23:21 +01:00
run : ./ci/steps/docker-buildx-push.sh
2022-08-19 17:40:00 +02:00
env :
2022-11-08 23:45:01 +01:00
VERSION : ${{ env.VERSION }}
2022-08-19 17:40:00 +02:00
GITHUB_TOKEN : ${{ github.token }}