Add the 404 to output #132
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: Build and Release Binaries | |
# on: | |
# push: | |
# branches: | |
# - master | |
# jobs: | |
# build: | |
# strategy: | |
# matrix: | |
# os: [ windows-latest, ubuntu-latest, macos-latest ] | |
# include: | |
# - os: windows-latest | |
# extension: ".zip" | |
# runtime: "win-x64" | |
# - os: ubuntu-latest | |
# extension: ".tar.gz" | |
# runtime: "linux-x64" | |
# - os: macos-latest | |
# runtime: "osx-x64" | |
# extension: ".zip" | |
# node_version: [18] | |
# fail-fast: false | |
# runs-on: ${{ matrix.os }} | |
# env: | |
# PROJECT_NAME: 'Blockcore.Explorer' | |
# SOLUTION_PATH: 'Blockcore.Explorer.sln' | |
# PROJECT_PATH: 'src/Blockcore.Explorer/Blockcore.Explorer.csproj' | |
# BUILD_CONFIGURATION: 'Release' | |
# steps: | |
# - uses: actions/checkout@v1 | |
# name: Checkout | |
# - name: Setup dotnet | |
# uses: actions/setup-dotnet@v1 | |
# with: | |
# dotnet-version: | | |
# 6.0.x | |
# - name: Setup Node.js (${{ matrix.node_version }}) | |
# uses: actions/setup-node@v1 | |
# with: | |
# node-version: ${{ matrix.node_version }} | |
# - name: Variables | |
# run: | | |
# echo VERSION=$(npm run version --silent) >> $GITHUB_ENV | |
# shell: bash | |
# # - name: Setup .NET Core (${{ matrix.dotnet_version }}) | |
# # uses: actions/setup-dotnet@v1 | |
# # with: | |
# # dotnet-version: ${{ matrix.dotnet_version }} | |
# - name: Restore | |
# run: dotnet restore ${{env.SOLUTION_PATH}} | |
# # - name: Build | |
# # run: dotnet build -c ${{env.BUILD_CONFIGURATION}} -r ${{ matrix.runtime }} /p:Version=${{ env.VERSION }} -v m ${{env.SOLUTION_PATH}} | |
# - name: Publish | |
# run: dotnet publish -c ${{env.BUILD_CONFIGURATION}} -r ${{ matrix.runtime }} /p:Version=${{ env.VERSION }} -v m -o ./src/${{ env.PROJECT_NAME }}/bin/publish ${{env.PROJECT_PATH}} | |
# - name: Package Name | |
# run: | | |
# echo RELEASE_NAME=${{ env.PROJECT_NAME }}-${{ env.VERSION }}-${{ matrix.runtime }}${{ matrix.extension }} >> $GITHUB_ENV | |
# echo RELEASE_PATH=${{ env.PROJECT_NAME }}-${{ env.VERSION }}-${{ matrix.runtime }}${{ matrix.extension }} >> $GITHUB_ENV | |
# shell: bash | |
# - name: Package (Linux) | |
# if: matrix.os == 'ubuntu-latest' | |
# run: | | |
# echo RELEASE_PATH=./src/${{env.PROJECT_NAME}}/bin/publish/${{env.RELEASE_NAME}} >> $GITHUB_ENV | |
# cd ./src/${{env.PROJECT_NAME}}/bin/publish/ | |
# tar cvzf ${{env.RELEASE_NAME}} * | |
# - name: Package (Windows) | |
# if: matrix.os == 'windows-latest' | |
# run: Compress-Archive -Path .\src\${{env.PROJECT_NAME}}\bin\publish\* -DestinationPath .\${{env.RELEASE_NAME}} | |
# - name: Package (Mac) | |
# if: matrix.os == 'macos-latest' | |
# run: zip -r ${{env.RELEASE_NAME}} ./src/${{env.PROJECT_NAME}}/bin/publish/ | |
# #- run: mkdir -p path/to/artifact | |
# #- run: echo hello > path/to/artifact/world.txt | |
# - uses: actions/upload-artifact@v1 | |
# with: | |
# name: blockcore-explorer | |
# path: "${{env.RELEASE_PATH}}" | |
# - name: Release | |
# uses: sondreb/action-release@main | |
# with: | |
# commit: 'master' | |
# token: ${{ secrets.GITHUB_TOKEN }} | |
# files: "${{env.RELEASE_PATH}}" | |
# draft: true | |
# prerelease: false | |
# name: "Blockcore Explorer (${{env.VERSION}})" | |
# tag: ${{env.VERSION}} |