MS RFC 141: Add MS_ONLINERESOURCE to CONFIG file #573
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: Build Alpine Linux | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: build_alpine | |
| steps: | |
| - name: Checkout repository contents | |
| uses: actions/checkout@v6 | |
| - name: Build | |
| run: | | |
| docker run \ | |
| -e WORK_DIR="$PWD" \ | |
| -v $PWD:$PWD alpine:edge $PWD/.github/workflows/build_alpine.sh |