ee40e339c8
Fix all instances of "Netbox". ```Shell git ls-files -z . | xargs --null -I '{}' find './{}' -type f -print0 | xargs --null sed --in-place --regexp-extended 's#Netbox#NetBox#g;' ``` Ref: https://netbox.readthedocs.io/en/stable/development/style-guide/#branding
41 lines
1.0 KiB
YAML
41 lines
1.0 KiB
YAML
name: push
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- release
|
|
pull_request:
|
|
branches-ignore:
|
|
- release
|
|
|
|
jobs:
|
|
build:
|
|
continue-on-error: ${{ matrix.docker_from == 'alpine:edge' }}
|
|
strategy:
|
|
matrix:
|
|
build_cmd:
|
|
- ./build-latest.sh
|
|
- PRERELEASE=true ./build-latest.sh
|
|
- ./build-next.sh
|
|
- ./build.sh develop
|
|
docker_from:
|
|
- '' # use the default of the build script
|
|
- alpine:edge
|
|
fail-fast: false
|
|
runs-on: ubuntu-latest
|
|
name: Builds new NetBox Docker Images
|
|
steps:
|
|
- id: git-checkout
|
|
name: Checkout
|
|
uses: actions/checkout@v2
|
|
- id: docker-build
|
|
name: Build the image from '${{ matrix.docker_from }}' with '${{ matrix.build_cmd }}'
|
|
run: ${{ matrix.build_cmd }}
|
|
env:
|
|
DOCKER_FROM: ${{ matrix.docker_from }}
|
|
GH_ACTION: enable
|
|
- id: docker-test
|
|
name: Test the image
|
|
run: IMAGE="${FINAL_DOCKER_TAG}" ./test.sh
|
|
if: steps.docker-build.outputs.skipped != 'true'
|