We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6adfe1 commit bcd7683Copy full SHA for bcd7683
.github/workflows/ci.yml
@@ -1,6 +1,8 @@
1
name: CI
2
on:
3
push:
4
+ branches:
5
+ - '**'
6
paths-ignore:
7
- 'Dockerfile'
8
- '.dockerignore'
.github/workflows/release.yml
@@ -0,0 +1,15 @@
+name: Release
+on:
+ push:
+ tags:
+ - 'NLSR-[0-9]+*'
+ workflow_dispatch:
+
+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
@@ -36,6 +36,7 @@ esac
36
set -x
37
38
if [[ $ID == macos ]]; then
39
+ export HOMEBREW_NO_ENV_HINTS=1
40
if [[ -n $GITHUB_ACTIONS ]]; then
41
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
42
fi
0 commit comments