Create release build.yml

release build
This commit is contained in:
Theomegas1 2025-09-24 16:14:09 -04:00 committed by GitHub
parent 73ba93b5e4
commit 31a0ca07a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

21
release build.yml Normal file
View file

@ -0,0 +1,21 @@
name: Main
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Build
run: echo ${{ github.sha }} > Release.txt
- name: Test
run: cat Release.txt
- name: Release
uses: softprops/action-gh-release@v2
if: github.ref_type == 'tag'
with:
files: |
Release.txt
LICENSE