Skip to content

Commit

Permalink
github action for creating release
Browse files Browse the repository at this point in the history
  • Loading branch information
lone17 committed Apr 26, 2024
1 parent bbe862f commit a2df63f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release-installer-package.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release installer package

on: push

jobs:
relase-installer-package:
runs-on: ubuntu-latest
steps:
- name: Clone the repo
uses: actions/checkout@v4
- name: Build
run: echo ${{ github.sha }} > Release.txt
- name: Test
run: cat Release.txt
- name: Release
uses: softprops/action-gh-release@v2
with:
files: |
Release.txt
LICENSE.txt
libs/ktem/flowsettings.py
libs/ktem/launch.py
scripts/
name: ${{ github.sha }}
draft: true
fail_on_unmatched_files: true

0 comments on commit a2df63f

Please sign in to comment.