This commit is contained in:
Alexandr Bogomyakov
2021-08-24 12:59:51 +03:00
parent 6c2837a76f
commit 5a6cb37ebb

View File

@@ -34,12 +34,12 @@ jobs:
build-push-docker: build-push-docker:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
# - name: Get the version (git tag) - name: Branch name
# id: get_version_for_docker id: branch_name
# run: | run: |
# echo ${GITHUB_REF/refs\/tags\/v/} echo ::set-output name=SOURCE_NAME::${GITHUB_REF#refs/*/}
# echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/} echo ::set-output name=SOURCE_BRANCH::${GITHUB_REF#refs/heads/}
# echo ::set-output name=FULL_TAG::${GITHUB_REF/refs\/tags\//} echo ::set-output name=SOURCE_TAG::${GITHUB_REF#refs/tags/}
- -
name: Set up QEMU name: Set up QEMU
uses: docker/setup-qemu-action@v1 uses: docker/setup-qemu-action@v1
@@ -59,13 +59,13 @@ jobs:
with: with:
push: true push: true
tags: ultradesu/desubot:latest tags: ultradesu/desubot:latest
# - -
# name: Build and push name: Build and push
# id: docker_build_tag id: docker_build_tag
# uses: docker/build-push-action@v2 uses: docker/build-push-action@v2
# with: with:
# push: true push: true
# tags: ultradesu/desubot:${{ steps.get_version.outputs.FULL_TAG }} tags: ultradesu/desubot:${{ steps.branch_name.outputs.SOURCE_TAG }}
publish: publish:
name: Publish release name: Publish release