forked from cloudamqp/amqproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (33 loc) · 946 Bytes
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
on:
push:
tags:
- v*
workflow_dispatch:
name: Create Release
jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build static tar package
uses: docker/build-push-action@v5
with:
file: tar.Dockerfile
platforms: linux/amd64,linux/arm64
outputs: .
cache-from: type=gha,scope=release
cache-to: type=gha,mode=max,scope=release
- name: List files
run: ls -Rl
- name: Create Release
run: gh release create "${{ github.ref }}" ./**/*.tar.gz --notes "$(./build/release_notes)"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}