修改dockerfile #62
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: deploy Docker image | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Extract Version | |
id: version_step | |
run: | | |
echo "##[set-output name=version;]VERSION=${GITHUB_REF#$"refs/tags/v"}" | |
echo "##[set-output name=version_tag;]kingwrcy/moments:${GITHUB_REF#$"refs/tags/v"}" | |
echo "##[set-output name=latest_tag;]kingwrcy/moments:latest" | |
- 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: PrepareReg Names | |
id: read-docker-image-identifiers | |
run: | | |
echo VERSION_TAG=$(echo ${{ steps.version_step.outputs.version_tag }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV | |
echo LASTEST_TAG=$(echo ${{ steps.version_step.outputs.latest_tag }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV | |
- name: Build and push Docker images | |
id: docker_build | |
uses: docker/build-push-action@v5 | |
with: | |
push: true | |
context: . | |
tags: | | |
${{env.VERSION_TAG}} | |
${{env.LASTEST_TAG}} | |
build-args: | | |
${{steps.version_step.outputs.version}} |