forked from rancher/os-base
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- GitHub action for create releases - Rename to burmilla - Sync using menu config - Add initial support for MIPS64el based on ARM64 config - Use buildroot version 2020.02.8 - Generated arm64 config based on aarch64_efi_defconfig - Generated amd64 config based on pc_x86_64_efi_defconfig - Tried to copy all needed kernel settings from old version - Updated busybox config
- Loading branch information
Showing
9 changed files
with
5,674 additions
and
428 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,33 @@ | ||
name: release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
arch: | ||
description: 'Architecture' | ||
default: 'amd64' | ||
required: true | ||
version: | ||
description: 'Version' | ||
default: 'v2020.02.8-?' | ||
required: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install github-release | ||
run: | | ||
wget -O - -o /dev/null https://github.com/github-release/github-release/releases/download/v0.9.0/linux-amd64-github-release.bz2 | bunzip2 | sudo tee /usr/local/bin/github-release | ||
sudo chmod 0755 /usr/local/bin/github-release | ||
- name: Build | ||
run: | | ||
ARCH=${{ github.event.inputs.arch }} RELEASE_VERSION=${{ github.event.inputs.version }} make release | ||
- name: Publish release | ||
run: ${PWD}/dist/publish.sh | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} |
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 |
---|---|---|
|
@@ -8,3 +8,6 @@ | |
/Dockerfile | ||
*.swp | ||
/.dapper | ||
ci.log | ||
/Dockerfile.dapper* | ||
!/Dockerfile.dapper |
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
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
Oops, something went wrong.