Skip to content

Commit 06b1b1f

Browse files
committed
Automatic build (#1)
1 parent 47ab08a commit 06b1b1f

82 files changed

Lines changed: 135 additions & 1099 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/documentation.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/security.md

Lines changed: 0 additions & 16 deletions
This file was deleted.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: build_alpaca_kernel
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
container:
15+
image: docker.io/zamkorus/alpacafirmwarebuilder:latest
16+
# Uncomment if you need to pass additional docker run options
17+
# options: --user 0:0
18+
steps:
19+
- name: Checkout repository
20+
uses: actions/checkout@v4
21+
22+
- name: Build firmware (Pico)
23+
env:
24+
TAG: ${{ github.ref_name }}
25+
run: |
26+
bash tools/build_alpaca_kernel.sh
27+
28+
- name: Upload artifact
29+
uses: actions/upload-artifact@v4
30+
with:
31+
name: rp2040-uf2
32+
path: dist/alpaca_firmware${{ github.ref_name }}.uf2
33+
34+
- name: Create GitHub Release
35+
uses: softprops/action-gh-release@v2
36+
with:
37+
files: dist/alpaca_firmware${{ github.ref_name }}.uf2
38+
generate_release_notes: true
39+
env:
40+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/code_formatting.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.github/workflows/code_size.yml

Lines changed: 0 additions & 45 deletions
This file was deleted.

.github/workflows/code_size_comment.yml

Lines changed: 0 additions & 105 deletions
This file was deleted.

0 commit comments

Comments
 (0)