Utilize new moddle for simulation model element creation - closes INS… #55
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 and push docker | |
on: [push] | |
jobs: | |
build-images: | |
runs-on: ubuntu-latest | |
steps: | |
# Log into github registry | |
- name: Log into registry | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin | |
# Check out the repo | |
- name: Checkout | |
uses: actions/checkout@v2 | |
# Build the images | |
- name: Build the docker-compose stack | |
run: docker-compose -f docker-compose.yml build | |
# List images | |
- name: List images | |
run: docker images | |
# Push images | |
- name: Push images | |
run: docker-compose -f docker-compose.yml push --ignore-push-failures |