* Fixed time server that returns correct time #66
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: .NET Core | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Publish Docker Action | |
uses: jerray/[email protected] | |
with: | |
# Username used to login docker registry | |
username: ${{ secrets.dockerHubUsername }} | |
# Password used to login docker registry | |
password: ${{ secrets.dockerHubSecret }} | |
# Docker build context | |
path: . | |
file: source/TestAuthority.Host/Dockerfile | |
repository: nomail/test-authority | |
auto_tag: true |