code-server/.github/workflows/publish.yaml

28 lines
692 B
YAML
Raw Normal View History

2020-05-08 14:08:30 +07:00
name: publish
on:
# Shows the manual trigger in GitHub UI
# helpful as a back-up in case the GitHub Actions Workflow fails
workflow_dispatch:
2020-05-08 14:08:30 +07:00
release:
types: [published]
jobs:
# NOTE: this job requires curl, jq and docker
# All of them are included in ubuntu-latest.
docker:
2020-05-08 14:08:30 +07:00
runs-on: ubuntu-latest
steps:
2021-07-15 18:24:30 +07:00
-
name: Checkout
uses: actions/checkout@v2
2021-07-15 18:24:30 +07:00
-
name: Run ./ci/steps/push-docker-manifest.sh
run: ./ci/steps/push-docker-manifest.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
2021-07-15 18:24:30 +07:00
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}