Update extensions list and move workspace file to root #97
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: Build Artifacts | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Environment | |
| uses: ./.github/actions/setup-env | |
| - name: Build Artifacts | |
| run: dotnet pack ./Questy/Questy.csproj --configuration Release --output "./artifacts" --include-source | |
| - name: Artifacts | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: 'artifacts.zip' | |
| path: ./artifacts/* |