Fix version sort for TBA mod, fix bad selected version when adding #44
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 and push container images | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v2 | |
- name: docker-compose build | |
run: docker-compose -f docker-compose.yml -f docker-compose.ci.yml build | |
env: | |
DOCKER_BUILDKIT: 1 | |
- name: login to registry | |
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u circlesabound --password-stdin | |
- name: push agent | |
run: docker push ghcr.io/circlesabound/fctrl/agent:latest | |
- name: push mgmt-server | |
run: docker push ghcr.io/circlesabound/fctrl/mgmt-server:latest |