mirror of https://github.com/coder/code-server.git
chore: push code-server image to GHCR (#5187)
This commit is contained in:
parent
1788537cce
commit
7a8d487729
|
@ -35,6 +35,13 @@ jobs:
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
|
- name: Login to GHCR
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Get version
|
- name: Get version
|
||||||
id: version
|
id: version
|
||||||
run: echo "::set-output name=version::$(jq -r .version package.json)"
|
run: echo "::set-output name=version::$(jq -r .version package.json)"
|
||||||
|
|
|
@ -15,6 +15,8 @@ target "code-server" {
|
||||||
tags = [
|
tags = [
|
||||||
"docker.io/codercom/code-server:latest",
|
"docker.io/codercom/code-server:latest",
|
||||||
notequal("latest",VERSION) ? "docker.io/codercom/code-server:${VERSION}" : "",
|
notequal("latest",VERSION) ? "docker.io/codercom/code-server:${VERSION}" : "",
|
||||||
|
"ghcr.io/coder/code-server:latest",
|
||||||
|
notequal("latest",VERSION) ? "ghcr.io/coder/code-server:${VERSION}" : "",
|
||||||
]
|
]
|
||||||
platforms = ["linux/amd64", "linux/arm64"]
|
platforms = ["linux/amd64", "linux/arm64"]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue