add FetchService to access remote and local media files #32
This file contains hidden or 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 Publish | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| permissions: | |
| contents: write | |
| jobs: | |
| publish: | |
| name: Publish CI/CD snapshot | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Install EF Core Tools | |
| # https://stackoverflow.com/questions/59234655/apply-ef-migrations-in-github-workflow | |
| run: dotnet tool install --global dotnet-ef | |
| - name: Run and publish build | |
| # https://stackoverflow.com/questions/58061430/how-to-call-powershell-script-with-github-actions-workflow | |
| # https://stackoverflow.com/questions/58886293/getting-current-branch-and-commit-hash-in-github-action | |
| # https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#setting-an-output-parameter | |
| # https://stackoverflow.com/questions/75679683/how-can-i-auto-generate-a-release-note-and-create-a-release-using-github-actions | |
| # https://cli.github.com/manual/gh_release_create | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| shell: pwsh | |
| run: | | |
| $VersionDate = Get-Date -Format "yyyyMMdd-HHmm" | |
| $VersionHash = git rev-parse --short ${{ github.ref }} | |
| $VersionTag = "$VersionDate-$VersionHash" | |
| $VersionSuffix = "-ci-$VersionTag" | |
| $ProjectVersion = (Select-Xml -Path "Directory.Build.props" -XPath "/Project/PropertyGroup/Version/text()").Node.Value | |
| $ReleaseVersion = "$ProjectVersion$VersionSuffix" | |
| & ./Resources/build-prod.ps1 -VersionSuffix $VersionSuffix | |
| gh release create "v$ReleaseVersion" --repo="$GITHUB_REPOSITORY" --title="Version $ProjectVersion CI $VersionTag" --generate-notes --prerelease './Release/ModShark-latest.zip' "./Release/ModShark-$ReleaseVersion.zip" |