Skip to content

Commit ead33fb

Browse files
committed
v1-prerelease
1 parent 352b204 commit ead33fb

15 files changed

+110
-1
lines changed

.github/workflows/pre-release.yml

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Intercept Binary Pre-Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "*"
7+
workflow_dispatch:
8+
inputs:
9+
logLevel:
10+
description: 'Log level'
11+
required: true
12+
default: 'warning'
13+
14+
jobs:
15+
build:
16+
name: Build
17+
runs-on: ubuntu-latest
18+
steps:
19+
20+
- name: Check out code
21+
uses: actions/checkout@v4
22+
23+
- name: Get the version
24+
id: get_version
25+
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
26+
27+
- name: Upload All artifacts
28+
uses: meeDamian/[email protected]
29+
with:
30+
allow_override: "true"
31+
draft: "true"
32+
token: ${{ secrets.GITHUB_TOKEN }}
33+
name: ${{ steps.get_version.outputs.VERSION }}
34+
body: >
35+
Pre-Release for ${{ steps.get_version.outputs.VERSION }}
36+
gzip: "false"
37+
files: >
38+
release/intercept-darwin-amd64
39+
release/intercept-darwin-amd64.sha256
40+
release/intercept-darwin-arm64
41+
release/intercept-darwin-arm64.sha256
42+
release/intercept-linux-amd64
43+
release/intercept-linux-amd64.sha256
44+
release/intercept-linux-arm
45+
release/intercept-linux-arm.sha256
46+
release/intercept-linux-arm64
47+
release/intercept-linux-arm64.sha256
48+
release/intercept-windows-amd64.exe
49+
release/intercept-windows-amd64.exe.sha256

.gitignore

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# If you prefer the allow list template instead of the deny list, see community template:
2+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
3+
#
4+
# Binaries for programs and plugins
5+
# *.exe
6+
# *.exe~
7+
*.dll
8+
*.so
9+
*.dylib
10+
11+
# Test binary, built with `go test -c`
12+
*.test
13+
14+
# Output of the go coverage tool, specifically when used with LiteIDE
15+
*.out
16+
17+
# Dependency directories (remove the comment below to include it)
18+
# vendor/
19+
20+
# Go workspace file
21+
go.work
22+
go.work.sum
23+
24+
# env file
25+
.env
26+
27+
.DS_Store
28+
.Trashes
29+
ehthumbs.db
30+
Thumbs.db
31+
Desktop.ini
32+
33+
.vscode/
34+
35+
36+
# Temp
37+
38+
playground/_output
39+
playground/_debug
40+
playground/_sarif
41+
playground/_patched
42+
43+
playground/intercept
44+
playground/intercept_*
45+
46+
playground/_*
47+
48+
# release/
49+
50+
docs/
51+
52+
local/

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
# Cleaned up for v1
1+
# INTERCEPT v1
2+
3+
#### intercept was rebuilt from groundup and will be moving shortly back to this repo

release/intercept-darwin-amd64

40.8 MB
Binary file not shown.

release/intercept-darwin-amd64.sha256

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
57c7db92f2319b6c766ee834a02f1d2de61343ff53b1b528e4b6de51bf644c69 release/intercept-darwin-amd64

release/intercept-darwin-arm64

38.9 MB
Binary file not shown.

release/intercept-darwin-arm64.sha256

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fe4af8812439515a3da7efa4af34820856c99d4292e62d1b4cfa503abae33e78 release/intercept-darwin-arm64

release/intercept-linux-amd64

14 MB
Binary file not shown.

release/intercept-linux-amd64.sha256

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
a80483ea363a7de5271c61cd8369b5a41d07effd2246ac0f91677e9668e930c9 release/intercept-linux-amd64

release/intercept-linux-arm

12 MB
Binary file not shown.

release/intercept-linux-arm.sha256

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
64f93d96e170660c7a559dbca8658ae1cb0b014f384c4d4d3b93f9c6a1e9a303 release/intercept-linux-arm

release/intercept-linux-arm64

11.9 MB
Binary file not shown.

release/intercept-linux-arm64.sha256

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
8baaf82741ec9540c2ee79e7581b52fff4b2223f01e634b780047cb3266ce1ed release/intercept-linux-arm64

release/intercept-windows-amd64.exe

13.8 MB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
7d4c34d6b1bc44f49d63c07aa1b037c5d3519fb154f6db45853a3a73aa88fde8 release/intercept-windows-amd64.exe

0 commit comments

Comments
 (0)