Update test result data for TextData row export (#1521) #208
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
# ref: https://docs.github.com/en/actions/publishing-packages/publishing-docker-images | |
name: Testing container image | |
on: | |
push: | |
branches: | |
- 'develop' | |
env: | |
CONTAINER_IMAGE: "ghcr.io/${{ github.repository }}" | |
jobs: | |
context: | |
runs-on: ubuntu-latest | |
steps: | |
- name: downcase CONTAINER_IMAGE | |
run: | | |
echo "CONTAINER_IMAGE=${CONTAINER_IMAGE,,}" >> ${GITHUB_ENV} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
push: true | |
platforms: | | |
linux/amd64 | |
linux/arm64 | |
tags: | | |
${{ env.CONTAINER_IMAGE }}:develop | |
${{ env.CONTAINER_IMAGE }}:${{ github.sha }} | |