Merge pull request #591 from shreyb/master #39
This file contains 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-al9-push | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
pushed_commit: | |
runs-on: ubuntu-latest | |
name: "Build master after push in AL9 container" | |
container: | |
image: almalinux:9.4-minimal | |
steps: | |
- name: Install tar and gzip | |
run: | | |
microdnf install -y tar | |
microdnf install -y gzip | |
- name: Check out jobsub_lite in runner | |
uses: actions/checkout@v4 | |
- name: Check out jobsub_lite_config in runner | |
uses: actions/checkout@v4 | |
with: | |
repository: fermitools/jobsub_lite_config | |
path: config | |
token: ${{ secrets.ACCESS_JOBSUB_LITE_CONFIG }} | |
- uses: ./.github/actions/build-with-make-al9 |