Skip to content

github action for creating release #2

github action for creating release

github action for creating release #2

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