Skip to content

Commit

Permalink
ci: add release workflow
Browse files Browse the repository at this point in the history
[skip ci]

Change-Id: I1d493d0087283d1ed1f0c2b2e48bedbfa168d5bc
  • Loading branch information
Pesa committed Jul 19, 2024
1 parent b6adfe1 commit bcd7683
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: CI
on:
push:
branches:
- '**'
paths-ignore:
- 'Dockerfile'
- '.dockerignore'
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Release
on:
push:
tags:
- 'NLSR-[0-9]+*'
workflow_dispatch:

permissions:
attestations: write
contents: write
id-token: write

jobs:
release:
uses: named-data/actions/.github/workflows/release.yml@v1
1 change: 1 addition & 0 deletions .jenkins.d/00-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ esac
set -x

if [[ $ID == macos ]]; then
export HOMEBREW_NO_ENV_HINTS=1
if [[ -n $GITHUB_ACTIONS ]]; then
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
fi
Expand Down

0 comments on commit bcd7683

Please sign in to comment.