Skip to content

Commit 57aa2b7

Browse files
committed
Bundling
1 parent c8a0f06 commit 57aa2b7

16 files changed

Lines changed: 42 additions & 8 deletions

File tree

.github/workflows/release-bundle.yaml

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@ name: Publish Git Bundle Release
22

33
on:
44
push:
5-
tags:
6-
- 'v*' # Triggers on any tag push starting with 'v'
5+
tags-ignore:
6+
- '**'
7+
branches:
8+
- '**'
79

810
jobs:
9-
build-and-release:
11+
github-release:
1012
runs-on: ubuntu-slim
13+
1114
permissions:
12-
contents: write # Required to create releases and upload assets
15+
contents: write
1316

1417
steps:
1518
- name: Checkout code
@@ -19,7 +22,21 @@ jobs:
1922
run: git bundle create repo.bundle --all
2023

2124
- name: Create GitHub Release
22-
id: create_release
23-
uses: softprops/action-gh-release@v2
24-
with:
25-
files: repo.bundle
25+
env:
26+
GITHUB_TOKEN: ${{ github.token }}
27+
continue-on-error: true
28+
run: >-
29+
gh release create
30+
"$(date +'%Y-%m-%d')"
31+
--repo '${{ github.repository }}'
32+
--notes "" --prerelease
33+
34+
- name: Upload artifact signatures to GitHub Release
35+
env:
36+
GITHUB_TOKEN: ${{ github.token }}
37+
run: >-
38+
gh release upload
39+
"$(date +'%Y-%m-%d')"
40+
repo.bundle
41+
--repo '${{ github.repository }}'
42+
--clobber

githooks/prepare-commit-msg-jira

100755100644
File mode changed.

scripts/ansi2html.sh

100755100644
File mode changed.

scripts/chbs.py

100755100644
File mode changed.

scripts/colordemo.sh

100755100644
File mode changed.

scripts/emux.sh

100755100644
File mode changed.

scripts/frem.sh

100755100644
File mode changed.

scripts/j2.py

100755100644
File mode changed.

scripts/jqt.sh

100755100644
File mode changed.

scripts/path-cleanup.ps1

100755100644
File mode changed.

0 commit comments

Comments
 (0)