Skip to content

Merge pull request #67 from eco-stake/exclude-chain-registry-template #180

Merge pull request #67 from eco-stake/exclude-chain-registry-template

Merge pull request #67 from eco-stake/exclude-chain-registry-template #180

Workflow file for this run

name: 'publish'
on:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build
run: |
echo "${{ secrets.GHCR_TOKEN }}" | docker login ghcr.io -u "${{ secrets.GHCR_USER }}" --password-stdin
docker build . --tag ghcr.io/${{ github.repository }}:${GITHUB_REF#refs/tags/}
docker tag ghcr.io/${{ github.repository }}:${GITHUB_REF#refs/tags/} ghcr.io/${{ github.repository }}:latest
docker push ghcr.io/${{ github.repository }}:${GITHUB_REF#refs/tags/}
docker push ghcr.io/${{ github.repository }}:latest