Skip to content

Commit d11beeb

Browse files
authored
Create build.yml
1 parent 162c744 commit d11beeb

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/build.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: build
2+
3+
on:
4+
pull_request:
5+
push:
6+
workflow_dispatch:
7+
8+
jobs:
9+
build:
10+
runs-on: ${{ matrix.os }}
11+
12+
container:
13+
image: docker.io/library/alpine
14+
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
os:
19+
- ubuntu-latest
20+
- ubuntu-24.04-arm
21+
22+
steps:
23+
- run: |
24+
wget -O- --header "Authorization: Bearer ${{ github.token }}" ${{ github.api_url }}/repos/${{ github.repository }}/tarball/${{ github.sha }} | tar -xz --strip-components 1
25+
- uses: ./
26+
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)