Update spacedock_adder.py to also generate the Github download in it's NetKANs #251
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 NetKAN-Infra | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Build Image | |
id: docker_build | |
uses: docker/build-push-action@v2 | |
with: | |
context: ./netkan | |
file: ./netkan/Dockerfile | |
push: false | |
target: test |