need to publish to git.vdb.to by tag

This commit is contained in:
Michael Shaw 2022-09-19 13:51:11 -04:00
parent 3053bbff7d
commit 50de2af907

View File

@ -10,7 +10,10 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Get the version - name: Get the version
id: vars 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 - name: Run docker build
run: make docker-build run: make docker-build
- name: Tag docker image - name: Tag docker image
@ -19,13 +22,15 @@ jobs:
run: echo ${{ secrets.GITEA_TOKEN }} | docker login https://git.vdb.to -u cerccicd --password-stdin run: echo ${{ secrets.GITEA_TOKEN }} | docker login https://git.vdb.to -u cerccicd --password-stdin
- name: Docker Push - name: Docker Push
run: docker push git.vdb.to/cerc-io/ipld-eth-db/ipld-eth-db:${{steps.vars.outputs.sha}} 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: #push_to_registries:
# name: Push Docker image to Docker Hub # name: Push Docker image to Docker Hub
# runs-on: ubuntu-latest # runs-on: ubuntu-latest
# needs: build # needs: build
# steps: # steps:
# - name: Get the version # - name: Get the version
# id: vars # id: vars
# run: | # run: |
# echo ::set-output name=sha::$(echo ${GITHUB_SHA:0:7}) # echo ::set-output name=sha::$(echo ${GITHUB_SHA:0:7})
# echo ::set-output name=tag::$(echo ${GITHUB_REF#refs/tags/}) # 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 # run: echo ${{ secrets.GITEA_TOKEN }} | docker login https://git.vdb.to -u cerccicd --password-stdin
# - name: Docker Pull # - name: Docker Pull
# run: docker pull git.vdb.to/cerc-io/ipld-eth-db/ipld-eth-db:${{steps.vars.outputs.sha}} # 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 # - name: Docker Login to Docker Registry
# run: echo ${{ secrets.VULCANIZEJENKINS_PAT }} | docker login -u cerccicd --password-stdin # run: echo ${{ secrets.VULCANIZEJENKINS_PAT }} | docker login -u cerccicd --password-stdin
# - name: Tag docker image # - name: Tag docker image