fixes grpc example and bumps all deps including docker images (#124) #11
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
# yamllint --format github .github/workflows/deploy.yml | |
--- | |
name: deploy webflux6-micrometer | |
on: | |
# We deploy non-tagged pushes to master relevant for this project. We can't opt out of | |
# documentation-only commits because GH actions does not permit paths and paths-ignore. | |
push: | |
tags: '' | |
branches: master | |
paths: | |
- "build-bin/**" | |
- "docker/**" | |
- "webflux6-micrometer/**" | |
- ".github/workflows/deploy-webflux6-micrometer.yaml" | |
- "parent-pom.xml" | |
jobs: | |
deploy: | |
runs-on: ubuntu-22.04 # newest available distribution, aka jellyfish | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Cache local Maven repository | |
uses: actions/cache@v3 | |
with: | |
path: ./m2repository # Shared with the Docker build context via .dockerignore | |
key: ${{ runner.os }}-webflux6-micrometer-maven-${{ hashFiles('parent-pom.xml', 'webflux6-micrometer/pom.xml') }} | |
restore-keys: ${{ runner.os }}-webflux6-micrometer-maven- | |
# Don't attempt to cache Docker. Sensitive information can be stolen | |
# via forks, and login session ends up in ~/.docker. This is ok because | |
# we publish DOCKER_PARENT_IMAGE to ghcr.io, hence local to the runner. | |
- name: Deploy webflux6-micrometer | |
env: | |
# GH_USER=<user that created GH_TOKEN> | |
GH_USER: ${{ secrets.GH_USER }} | |
# GH_TOKEN=<hex token value> | |
# - pushes Docker images to ghcr.io | |
# - create via https://github.com/settings/tokens | |
# - needs repo:status, public_repo, write:packages, delete:packages | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
run: | | |
build-bin/configure_deploy webflux6-micrometer && | |
build-bin/deploy webflux6-micrometer |