Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
Add release workflow
Browse files Browse the repository at this point in the history
- auto-generate release
  • Loading branch information
jrmadsen committed Oct 16, 2023
1 parent c0630ee commit 567870c
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Release

on:
workflow_dispatch:
push:
tags:
- v*

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
GIT_DISCOVERY_ACROSS_FILESYSTEM: 1

jobs:
release:
if: github.repository == 'NERSC/timemory'
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- name: Generate Release
uses: softprops/action-gh-release@v1
with:
draft: False
generate_release_notes: True

0 comments on commit 567870c

Please sign in to comment.