Bump Microsoft.Extensions.Caching.Memory from 6.0.1 to 6.0.2 #21
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: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.300 | |
- name: Build with dotnet | |
run: dotnet build --configuration Release | |
- name: Push docker | |
uses: manusa/[email protected] | |
with: | |
# Name of the Docker image | |
name: wesback/lastfmreader | |
# Tag for the Docker image | |
tag: latest | |
# Username for Docker registry | |
username: wesback | |
# Password for Docker registry | |
password: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
# Registry URL |