Skip to content

Fix ApplyOptionalResponseAlteration implementation (#80) #26

Fix ApplyOptionalResponseAlteration implementation (#80)

Fix ApplyOptionalResponseAlteration implementation (#80) #26

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Build and Release SPIDProxy
# Controls when the workflow will run
on:
push:
branches:
- main
paths:
- 'WebApps/Proxy/**'
- 'WebApps/Microsoft.SPID.Proxy.sln'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
BuildAndRelease:
permissions:
contents: write
env:
SOLUTION_FILE: "Microsoft.SPID.Proxy.sln"
PUBLISH_FOLDER: "_publish"
ARTIFACT_NAME: SPIDProxy
RELEASE_VERSION: 8.0.${{ github.run_number}}
RELEASE_ZIP_FILENAME: "release.zip"
# The type of runner that the job will run on
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./WebApps/Proxy
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: publish
run: dotnet publish -c Release -o $PUBLISH_FOLDER -p:Version=$RELEASE_VERSION $SOLUTION_FILE
- name: Upload Build Artifact
uses: actions/upload-artifact@v2.2.4
with:
name: ${{ env.ARTIFACT_NAME }}
path: ${{ github.workspace }}/WebApps/Proxy/${{ env.PUBLISH_FOLDER }}
- name: Zip Release
uses: TheDoctor0/zip-release@0.6.0
with:
directory: ${{ github.workspace }}/WebApps/Proxy/${{ env.PUBLISH_FOLDER }}
filename: ${{ github.workspace }}/WebApps/Proxy/${{ env.PUBLISH_FOLDER }}/${{ env.RELEASE_ZIP_FILENAME }}
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: ${{ github.workspace }}/WebApps/Proxy/${{ env.PUBLISH_FOLDER }}/${{ env.RELEASE_ZIP_FILENAME }}
commit: ${{ github.sha }}
tag: v${{ env.RELEASE_VERSION }}
token: ${{ secrets.GITHUB_TOKEN }}