forked from LuisLiraC/git-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (63 loc) · 1.89 KB
/
release.yaml
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
name: Release Binary
on:
workflow_dispatch:
inputs:
tag:
description: 'Tag to release'
required: true
jobs:
build-artifacts:
runs-on: ubuntu-latest
name: Build Artifacts
env:
binary_name: git-diff
steps:
- uses: actions/checkout@v4
- name: Cache cargo registry
uses: actions/cache@v4
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-registry-
- name: Cache cargo index
uses: actions/cache@v4
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-index-
- name: Cache cargo build
uses: actions/cache@v4
with:
path: target
key: ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-build-
- name: Build
run: cargo build --release
- name: Create Archive Folder
run: mkdir ${{ runner.os }}
- name: Copy Artifact
run: cp target/release/${{ env.binary_name }} ${{ runner.os }}
- name: Create Tar Archive
run: tar -czf ${{ runner.os }}.tgz ${{ runner.os }}
- name: Store Archive
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}
path: ${{ runner.os }}.tgz
create-release:
needs: [build-artifacts]
runs-on: ubuntu-latest
name: Create Release
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: "Linux/Linux.tgz"
tag: ${{ github.event.inputs.tag }}