Use sitepackages var #3
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 | |
on: | |
push: | |
branches: [ main ] | |
# Run when container or environment is changed | |
paths: | |
- 'jukes-micromamba/Dockerfile' | |
# Allows workflow to be manually triggered | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@main | |
- name: 'Login to GitHub Container Registry' | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{github.actor}} | |
password: ${{secrets.GITHUB_TOKEN}} | |
- name: 'Build Inventory Image' | |
run: | | |
docker build ./jukes-micromamba/ --tag ghcr.io/bsurc/jukes-micromamba:latest | |
docker push ghcr.io/bsurc/jukes-micromamba:latest |