.github/workflows/publish.yml: switch to the v6.1.105 branch #403
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: eve-kernel build | |
on: | |
workflow_dispatch: | |
pull_request_review: | |
types: [ submitted ] | |
push: | |
branches: | |
- "eve-kernel-amd64-v6.1.105-rt" | |
env: | |
branch_name: "refs/heads/eve-kernel-amd64-v6.1.105-rt" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
packages: | |
runs-on: self-hosted | |
if: ${{ github.event.review.state == 'approved' }} || github.ref == env.branch_name | |
steps: | |
- name: Get eve-kernel | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Build eve-kernel-amd64 | |
run: | | |
make -f Makefile.eve BRANCH?=${GITHUB_REF##*/} kernel-gcc | |
- name: Log in to Docker Hub | |
if: ${{ github.ref == env.branch_name }} | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.RELEASE_DOCKERHUB_ACCOUNT }} | |
password: ${{ secrets.RELEASE_DOCKERHUB_TOKEN }} | |
- name: Push eve-kernel-amd64-v6.1.105-rt if PR approved or pushed | |
if: ${{ github.ref == env.branch_name }} | |
run: | | |
make -f Makefile.eve BRANCH?=${GITHUB_REF##*/} push-gcc |