Build on el8/el9, sign rpm, deploy to pkg_01 (#28) #2
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: 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 |