chore(deps): bump ubuntu from jammy-20240227 to jammy-20240530 #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
name: Test Build & Run | |
on: | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
docker-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0 | |
- name: Set version | |
# Always use git tags as semantic release can fail due to rate limit | |
run: | | |
git fetch --prune --unshallow | |
echo "RELEASE_VERSION=$(git describe --abbrev=0 --tags | sed -e 's/^v//')" >> $GITHUB_ENV | |
- name: Set up Docker Buildx #must be executed before a step that contains platforms | |
uses: docker/setup-buildx-action@v2 | |
- name: Build image for multiple platforms | |
# Need to build for 2 platforms in 2 stages even though --platform=linux/amd64,linux/arm64 is possible. | |
# This is because --load isn't compatible when multiple args are passed to --platform. | |
# https://github.com/docker/buildx/issues/59 | |
# We want --load to save the image to local registry. | |
run: | | |
docker buildx build --load --platform linux/arm64 -t flanksource/base-image:${{ env.RELEASE_VERSION }} . | |
docker buildx build --load --platform linux/amd64 -t flanksource/base-image:${{ env.RELEASE_VERSION }} . | |
- name: Run the container | |
run: | | |
docker run --pull=never --rm flanksource/base-image:${{ env.RELEASE_VERSION }} echo 'hello world' |