Second stage of the docker container build
All checks were successful
Testing / test (1.23.x, ubuntu-latest) (push) Successful in 1m6s
All checks were successful
Testing / test (1.23.x, ubuntu-latest) (push) Successful in 1m6s
This commit is contained in:
36
.github/workflows/build.yml
vendored
36
.github/workflows/build.yml
vendored
@ -35,6 +35,8 @@ jobs:
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
platforms: ["linux/amd64"]
|
||||
|
||||
- name: Login to DockerHub
|
||||
uses: docker/login-action@v3
|
||||
@ -43,21 +45,21 @@ jobs:
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
|
||||
# - 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: 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
|
||||
# id: docker_build
|
||||
# uses: docker/build-push-action@v6
|
||||
# with:
|
||||
# push: true
|
||||
# tags: |
|
||||
# ${{env.VERSION_TAG}}
|
||||
# ${{env.LASTEST_TAG}}
|
||||
# build-args: |
|
||||
# ${{steps.version_step.outputs.version}}
|
||||
# docker.savin.nyc/${{ github.event.repository.name }}:latest
|
||||
# docker.savin.nyc/${{ github.event.repository.name }}:${{ env.RELEASE_VERSION }}
|
||||
- name: Build and push
|
||||
id: docker_build
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
push: true
|
||||
tags: |
|
||||
${{env.VERSION_TAG}}
|
||||
${{env.LASTEST_TAG}}
|
||||
build-args: |
|
||||
${{steps.version_step.outputs.version}}
|
||||
docker.savin.nyc/${{ github.event.repository.name }}:latest
|
||||
docker.savin.nyc/${{ github.event.repository.name }}:${{ env.RELEASE_VERSION }}
|
||||
|
Reference in New Issue
Block a user