Skip to content

Commit 0bd57ad

Browse files
committed
Release v0.15.0 - second attempt
1 parent 03189fa commit 0bd57ad

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/release.yml

+14-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,19 @@ on:
55
branches:
66
- main
77
- master
8+
paths:
9+
# Just run on main branch if "native" path changed.
10+
- "native/**"
11+
# Also run if this file changes.
12+
- ".github/workflows/release.yml"
813
tags:
9-
- '*'
14+
# Tags will always run.
15+
- "*"
16+
pull_request:
17+
paths:
18+
# In PRs we only run if this file changes.
19+
- ".github/workflows/release.yml"
20+
workflow_dispatch:
1021

1122
jobs:
1223
build_release:
@@ -15,7 +26,7 @@ jobs:
1526
strategy:
1627
fail-fast: false
1728
matrix:
18-
nif: ["2.16", "2.15", "2.14"]
29+
nif: ["2.16", "2.15"]
1930
job:
2031
- { target: arm-unknown-linux-gnueabihf , os: ubuntu-20.04 , use-cross: true }
2132
- { target: aarch64-unknown-linux-gnu , os: ubuntu-20.04 , use-cross: true }
@@ -64,6 +75,7 @@ jobs:
6475

6576
- name: Write SHA256 to the summary
6677
run: |
78+
echo "SHA256 for this artifact:" >> $GITHUB_STEP_SUMMARY
6779
echo "${{ steps.build-crate.outputs.file-sha256 }} ${{ steps.build-crate.outputs.file-name }}" >> $GITHUB_STEP_SUMMARY
6880
6981
- name: Publish archives and packages

0 commit comments

Comments
 (0)