Add workflows to test upload-artifact 500-file limit #15
Workflow file for this run
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: PR - Build / Test - Composite action | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Start Build Indicator | |
| env: | |
| LIFX_BULB_LOCATION: ${{ vars.LIFX_BULB_LOCATION }} | |
| LIFX_TOKEN: ${{ secrets.LIFX_TOKEN }} | |
| run: | | |
| curl -X POST "https://api.lifx.com/v1/lights/$LIFX_BULB_LOCATION/effects/breathe" \ | |
| -H "Authorization: Bearer $LIFX_TOKEN" \ | |
| -d 'color=blue' \ | |
| -d 'period=4' \ | |
| -d 'cycles=450' \ | |
| -d 'from_color=pink' | |
| - name: Build and Publish .NET Core App | |
| uses: devopselvis/build-test-net-core-app-custom-action@main | |
| with: | |
| dotnet-version: "8.0.x" | |
| project-path: "${{ github.workspace }}/src/my-web-app/my-web-app.csproj" | |
| output-path: "mywebapp" | |
| - name: Final build status indicator | |
| if: success() | |
| run: | | |
| curl -X POST "https://api.lifx.com/v1/lights/${{ vars.LIFX_BULB_LOCATION }}/effects/off" -H "Authorization: Bearer ${{ secrets.LIFX_TOKEN }}" -d 'power_off=false' | |
| curl -X PUT "https://api.lifx.com/v1/lights/${{ vars.LIFX_BULB_LOCATION }}/state" -H "Authorization: Bearer ${{ secrets.LIFX_TOKEN }}" -d 'color=green' | |
| - name: Final build status indicator | |
| if: failure() | |
| run: | | |
| curl -X POST "https://api.lifx.com/v1/lights/${{ vars.LIFX_BULB_LOCATION }}/effects/off" -H "Authorization: Bearer ${{ secrets.LIFX_TOKEN }}" -d 'power_off=false' | |
| curl -X PUT "https://api.lifx.com/v1/lights/${{ vars.LIFX_BULB_LOCATION }}/state" -H "Authorization: Bearer ${{ secrets.LIFX_TOKEN }}" -d 'color=red' |