-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from yash-zededa/eve-kernel-amd64-v6.1.38-generic
To publish eve-kernel-amd64-v6.1.38-generic
- Loading branch information
Showing
2 changed files
with
34 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: eve-kernel build | ||
on: # yamllint disable-line rule:truthy | ||
push: | ||
branches: | ||
- "eve-kernel-amd64-v6.1.38-generic" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
packages: | ||
runs-on: self-hosted | ||
steps: | ||
- name: Get eve-kernel | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: "eve-kernel-amd64-v6.1.38-generic" | ||
- name: Log in to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.RELEASE_DOCKERHUB_ACCOUNT }} | ||
password: ${{ secrets.RELEASE_DOCKERHUB_TOKEN }} | ||
- name: Build eve-kernel-amd64-v6.1.38-generic | ||
run: | | ||
make -f Makefile.eve BRANCH?=${GITHUB_REF##*/} push-gcc |
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