my branch only #4
Workflow file for this run
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: Compile and publish kernels | |
on: | |
push: | |
branches: | |
- ARC-Migration | |
jobs: | |
build: | |
runs-on: panda-arc | |
container: | |
image: ubuntu:latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
bash docker_build.sh | |
tar -czvf kernels-latest.tar.gz binaries | |
- name: Save package | |
uses: actions/upload-artifact@v3 | |
with: | |
name: kernels-latest.tar.gz | |
path: kernels-latest.tar.gz | |
- name: Create release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: release_${{ github.sha }} | |
release_name: Release ${{ github.ref }} | |
body: | | |
Release @${{ github.ref }} | |
draft: true | |
prerelease: false | |
- name: Upload release asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./kernels-latest.tar.gz | |
asset_name: kernels-latest.tar.gz | |
asset_content_type: application/gzip | |
- name: Publish release | |
uses: StuYarrow/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
id: ${{ steps.create_release.outputs.id }} |