Replace gauge value instead of summing #2
Workflow file for this run
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: pr_build | |
on: | |
pull_request: | |
paths: | |
- '*' | |
- '*/**' | |
- '!README.md' | |
- '!.tool-versions' | |
- '!COPYING.LGPL-3' | |
- '!.gitattributes' | |
- '!.gitignore' | |
jobs: | |
build-image: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: wistia/[email protected] | |
- uses: earthly/actions-setup@v1 | |
with: { version: "v${{ env.EARTHLY_TOOL_VERSION }}" } | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
# intentionally avoiding --push, this is just | |
# to test the command | |
- run: ./earthly +build-image-multiarch | |
release-test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: wistia/[email protected] | |
- uses: earthly/actions-setup@v1 | |
with: { version: "v${{ env.EARTHLY_TOOL_VERSION }}" } | |
# intentionally avoiding --push, this is just | |
# to test the command | |
- run: ./earthly +release-binaries | |
skaffold: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: wistia/[email protected] | |
- uses: earthly/actions-setup@v1 | |
with: { version: "v${{ env.EARTHLY_TOOL_VERSION }}" } | |
- name: start minikube | |
uses: hiberbee/[email protected] | |
- name: setup helm | |
uses: hiberbee/[email protected] | |
- name: run skaffold | |
uses: hiberbee/[email protected] | |
with: | |
skaffold-version: "${{ env.SKAFFOLD_TOOL_VERSION }}" | |
command: run |