Sort rankings #16
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
# BUILDS AND RUNS DOCKER IMAGE | |
name: Build | |
on: | |
push: | |
branches: | |
# any branch | |
- '**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build Docker Image | |
run: docker build -t zeek_website . --no-cache | |
- name: Start Docker Service | |
run: docker-compose up -d | |
- name: Stop Docker Service | |
run: docker-compose down | |