feat: move ckanext-validation to frictionless-upgrade-feature-branch #68
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and publish CKAN image | |
on: | |
push: | |
paths: | |
- 'ckan/**' | |
- '.github/workflows/build_ckan.yml' | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2.5.0 # Checking out the repo | |
- name: Build and publish CKAN base image | |
uses: VaultVulp/gp-docker-action@1.5.0 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} # Provide GITHUB_TOKEN to login into the GitHub Packages | |
image-name: ckan_base | |
image-tag: ${{ github.ref_name }} | |
build-context: ckan/ | |
dockerfile: ckan/Dockerfile |