Skip to content

Commit

Permalink
Release v0.15.0 - second attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
philss committed Jun 16, 2023
1 parent 03189fa commit 0bd57ad
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,19 @@ on:
branches:
- main
- master
paths:
# Just run on main branch if "native" path changed.
- "native/**"
# Also run if this file changes.
- ".github/workflows/release.yml"
tags:
- '*'
# Tags will always run.
- "*"
pull_request:
paths:
# In PRs we only run if this file changes.
- ".github/workflows/release.yml"
workflow_dispatch:

jobs:
build_release:
Expand All @@ -15,7 +26,7 @@ jobs:
strategy:
fail-fast: false
matrix:
nif: ["2.16", "2.15", "2.14"]
nif: ["2.16", "2.15"]
job:
- { target: arm-unknown-linux-gnueabihf , os: ubuntu-20.04 , use-cross: true }
- { target: aarch64-unknown-linux-gnu , os: ubuntu-20.04 , use-cross: true }
Expand Down Expand Up @@ -64,6 +75,7 @@ jobs:

- name: Write SHA256 to the summary
run: |
echo "SHA256 for this artifact:" >> $GITHUB_STEP_SUMMARY
echo "${{ steps.build-crate.outputs.file-sha256 }} ${{ steps.build-crate.outputs.file-name }}" >> $GITHUB_STEP_SUMMARY
- name: Publish archives and packages
Expand Down

0 comments on commit 0bd57ad

Please sign in to comment.