Skip to content

Work around https://github.com/dotnet/fsharp/issues/16524 #198

Work around https://github.com/dotnet/fsharp/issues/16524

Work around https://github.com/dotnet/fsharp/issues/16524 #198

Workflow file for this run

name: Docker
on:
push:
branches:
- master
tags:
- 'v*'
pull_request:
branches:
- master
schedule:
- cron: '0 0 * * 6' # every Saturday
jobs:
publish:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Build and Push Docker Images
uses: docker/build-push-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: codingteam/emulsion
tag_with_ref: true
tags: latest
push: ${{ github.event_name == 'push' && contains(github.ref, 'refs/tags/') && 'true' || 'false' }}