build(deps): bump docker/login-action from 2.2.0 to 3.0.0 (#898) #154
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build app and update Docker image | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set variables | |
id: vars | |
run: | | |
echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" | |
echo "::set-output name=docker_image::ghcr.io/netwerk-digitaal-erfgoed/network-of-terms-demo" | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
with: | |
# See https://github.com/docker/build-push-action/issues/126. | |
driver-opts: image=moby/buildkit:master | |
- name: Log in to Docker registry | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.CONTAINER_REGISTRY_TOKEN }} | |
- name: Build and push image to registry | |
uses: docker/[email protected] | |
with: | |
context: . | |
push: true | |
tags: | | |
${{ steps.vars.outputs.docker_image }}:${{ steps.vars.outputs.sha_short }} | |
${{ steps.vars.outputs.docker_image }}:latest | |
- uses: digitalocean/action-doctl@v2 | |
with: | |
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }} | |
- name: Store DigitalOcean credentials | |
run: doctl kubernetes cluster kubeconfig save nde | |
# See https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#updating-a-deployment | |
- name: Update deployment | |
run: | | |
kubectl set image deployment/network-of-terms-demo app=${{ steps.vars.outputs.docker_image }}:${{ steps.vars.outputs.sha_short }} --record | |
- name: Verify deployment | |
run: kubectl rollout status deployment/network-of-terms-demo |