Dont show error message on image url if the input field is empty #168
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: Deployment Pipeline for develop branch | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
deploy: | |
permissions: write-all | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
id: checkout | |
uses: actions/checkout@v2 | |
- name: Set up .NET | |
id: setup | |
uses: actions/[email protected] | |
with: | |
dotnet-version: '6.x' | |
- name: Build .NET Solution | |
id: build | |
run: dotnet build gamevault.sln --configuration Release |