Merge pull request #187 from GEO-BON/brt_for_real #6
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: Julia Runner, main branch | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- 'runners/julia-dockerfile' | |
jobs: | |
runner-julia: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: geobon/bon-in-a-box | |
tags: | | |
# Image used in compose file | |
type=raw,value=runner-julia | |
# In case we want to replicate a specific legacy setup | |
type=sha,prefix=runner-julia- | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v3 | |
with: | |
context: runners | |
file: runners/julia-dockerfile | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |