Skip to content

Commit bcd7683

Browse files
committed
ci: add release workflow
[skip ci] Change-Id: I1d493d0087283d1ed1f0c2b2e48bedbfa168d5bc
1 parent b6adfe1 commit bcd7683

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: CI
22
on:
33
push:
4+
branches:
5+
- '**'
46
paths-ignore:
57
- 'Dockerfile'
68
- '.dockerignore'

.github/workflows/release.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Release
2+
on:
3+
push:
4+
tags:
5+
- 'NLSR-[0-9]+*'
6+
workflow_dispatch:
7+
8+
permissions:
9+
attestations: write
10+
contents: write
11+
id-token: write
12+
13+
jobs:
14+
release:
15+
uses: named-data/actions/.github/workflows/release.yml@v1

.jenkins.d/00-deps.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ esac
3636
set -x
3737

3838
if [[ $ID == macos ]]; then
39+
export HOMEBREW_NO_ENV_HINTS=1
3940
if [[ -n $GITHUB_ACTIONS ]]; then
4041
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
4142
fi

0 commit comments

Comments
 (0)