Merge pull request #229 from xuewenG/fix/unexpected-image-rotation #5
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 And Upload Image For Dev | |
on: | |
push: | |
branches: | |
- dev | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USER_NAME }} | |
password: ${{ secrets.DOCKER_ACCESS_TOKEN }} | |
- name: Extract Version | |
run: | | |
echo VERSION_TAG=dev >> $GITHUB_ENV | |
echo VERSION=dev >> $GITHUB_ENV | |
echo COMMIT_ID=${GITHUB_SHA:0:7} >> $GITHUB_ENV | |
- name: Build and Push Image | |
uses: docker/build-push-action@v6 | |
with: | |
push: true | |
context: . | |
platforms: | | |
linux/amd64 | |
linux/arm64 | |
tags: | | |
${{ secrets.DOCKER_USER_NAME }}/moments:${{ env.VERSION_TAG }} | |
${{ secrets.DOCKER_USER_NAME }}/moments:${{ env.VERSION }} | |
build-args: | | |
VERSION=${{ env.VERSION }} | |
COMMIT_ID=${{ env.COMMIT_ID }} |