From 50de2af907a64ad45b06f0df5b97e8cb3feedd30 Mon Sep 17 00:00:00 2001 From: Michael Shaw Date: Mon, 19 Sep 2022 13:51:11 -0400 Subject: [PATCH] need to publish to git.vdb.to by tag --- .github/workflows/publish.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 586c7ad..c017ecc 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -10,7 +10,10 @@ jobs: - uses: actions/checkout@v2 - name: Get the version id: vars - run: echo ::set-output name=sha::$(echo ${GITHUB_SHA:0:7}) + run: | + echo ::set-output name=sha::$(echo ${GITHUB_SHA:0:7}) + echo ::set-output name=tag::$(echo ${GITHUB_REF#refs/tags/}) + - name: Docker Login to Github Registry - name: Run docker build run: make docker-build - name: Tag docker image @@ -19,13 +22,15 @@ jobs: run: echo ${{ secrets.GITEA_TOKEN }} | docker login https://git.vdb.to -u cerccicd --password-stdin - name: Docker Push run: docker push git.vdb.to/cerc-io/ipld-eth-db/ipld-eth-db:${{steps.vars.outputs.sha}} + - name: Docker Push with TAG to git.vdb.to + run: docker push git.vdb.to/cerc-io/ipld-eth-db/ipld-eth-db:${{steps.vars.outputs.tag}} #push_to_registries: # name: Push Docker image to Docker Hub # runs-on: ubuntu-latest # needs: build # steps: # - name: Get the version - # id: vars + # id: vars # run: | # echo ::set-output name=sha::$(echo ${GITHUB_SHA:0:7}) # echo ::set-output name=tag::$(echo ${GITHUB_REF#refs/tags/}) @@ -33,6 +38,8 @@ jobs: # run: echo ${{ secrets.GITEA_TOKEN }} | docker login https://git.vdb.to -u cerccicd --password-stdin # - name: Docker Pull # run: docker pull git.vdb.to/cerc-io/ipld-eth-db/ipld-eth-db:${{steps.vars.outputs.sha}} + # - name: Docker Push to Docker Hub + # run: docker push cerc-io/ipld-eth-db:${{steps.vars.outputs.tag}} # - name: Docker Login to Docker Registry # run: echo ${{ secrets.VULCANIZEJENKINS_PAT }} | docker login -u cerccicd --password-stdin # - name: Tag docker image