Skip to content

chore: bump package version to 2.1.0 #15

chore: bump package version to 2.1.0

chore: bump package version to 2.1.0 #15

Workflow file for this run

name: Release on Docker Hub upon pushing a tag
on:
push:
tags:
- '*'
jobs:
preparations:
name: Preparations
uses: ./.github/workflows/push.yml

Check failure on line 11 in .github/workflows/tag.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tag.yml

Invalid workflow file

error parsing called workflow ".github/workflows/tag.yml" -> "./.github/workflows/push.yml" (source tag with sha:2046a6950bf72882ca4e906c75c33a2072a38b76) : workflow is not reusable as it is missing a `on.workflow_call` trigger
docker-publish:
name: Publish Docker image as tag
runs-on: ubuntu-latest
steps:
- name: Tag image
run: docker tag witnet/price-feeds-poller:latest witnet/price-feeds-poller:${{github.ref_name}}
- name: Log into Docker Hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Push image to Docker Hub
run: docker push witnet/price-feeds-poller:${{github.ref_name}}