Skip to content

feat: add collection file migration #28

feat: add collection file migration

feat: add collection file migration #28

Workflow file for this run

name: Build and publish bgmdatapostprocess image
on:
push:
paths:
- 'postprocess/**'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: docker build postprocess --tag image
- name: Log into registry
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u wattlebird --password-stdin
- name: Push image
run: |
docker tag image wattlebird/bgmdatapostprocess:latest
docker push wattlebird/bgmdatapostprocess:latest