Update dfg_01 to 4.0.0, update repo_baseurl variable (#30) #3
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: CI | |
| on: [ push ] | |
| jobs: | |
| upload: | |
| name: CI | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| os: [ "el8", "el9" ] | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Build container | |
| run: docker build . --tag builder -f "Dockerfile.${{ matrix.os }}" | |
| - name: Build project | |
| run: docker run -v "${{ github.workspace }}:/code:Z" builder |