-
Notifications
You must be signed in to change notification settings - Fork 2
103 lines (101 loc) · 3.59 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: release
on:
push:
tags: ["[0-9]+.[0-9]+.[0-9]+*"]
pull_request:
workflow_dispatch:
jobs:
# build_binaries:
# name: ${{ matrix.target }}
# runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: false
# matrix:
# include:
# - os: ubuntu-latest
# target: aarch64-unknown-linux-gnu
# deps: |
# sudo apt-get update
# sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
# env:
# CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
# - os: ubuntu-latest
# target: x86_64-unknown-linux-gnu
# - os: macos-latest
# target: x86_64-apple-darwin
# - os: macos-latest
# target: aarch64-apple-darwin
# - os: windows-latest
# target: x86_64-pc-windows-msvc
# - os: windows-latest
# target: aarch64-pc-windows-msvc
# steps:
# - name: checkout
# uses: actions/checkout@v4
# - uses: actions-rust-lang/setup-rust-toolchain@v1
# with:
# rustflags: ""
# target: ${{ matrix.target }}
# - name: Install dependencies
# if: matrix.deps != ''
# run: ${{ matrix.deps }}
# shell: bash
# - name: install protoc
# uses: arduino/setup-protoc@v3
# with:
# repo-token: ${{ secrets.GITHUB_TOKEN }}
# - name: Set CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER
# if: matrix.target == 'aarch64-unknown-linux-gnu'
# run: echo "CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc" >> $GITHUB_ENV
# - run: |
# git config --global --add url."https://${{ secrets.GH_TOKEN }}:[email protected]/".insteadOf "[email protected]:"
# git config --global --add url."https://${{ secrets.GH_TOKEN }}:x-oauth-basic@github".insteadOf https://github
# git config --global --add url."https://${{ secrets.GH_TOKEN }}:x-oauth-basic@github".insteadOf ssh://git@github
# - name: Build
# run: cargo build --release --target ${{ matrix.target }}
# - name: Prepare artifacts
# shell: bash
# run: |
# cd target/${{ matrix.target }}/release
# if [ "${{ matrix.os }}" = "windows-latest" ];
# then
# 7z a ../../../$s2-cli-${{ matrix.target }}.zip s2-cli.exe
# else
# tar -czf ../../../$s2-cli-${{ matrix.target }}.tar.gz s2-cli
# fi
# - name: upload artifacts
# uses: actions/upload-artifact@v4
# with:
# name: ${{ matrix.target }}
# path: |
# *.tar.gz
# *.zip
# if-no-files-found: error
create_release:
# needs: build_binaries
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: checkout
uses: actions/checkout@v4
- name: version
id: version
uses: SebRollen/[email protected]
with:
file: Cargo.toml
field: package.version
- uses: mindsers/changelog-reader-action@v2
id: changelog_reader
with:
version: ${{ steps.version.outputs.value }}
- name: download artifacts
uses: actions/download-artifact@v4
# - name: create release
# uses: softprops/action-gh-release@v2
# with:
# files: |
# **/*.tar.gz
# **/*.zip
# name: ${{ steps.version.outputs.value }}
# body: ${{ steps.changelog_reader.outputs.changes }}