Skip to content

Commit 0fa5491

Browse files
authored
Merge pull request #1 from Apostles1/Apostles1-patch-1
Create release build.yml
2 parents 73ba93b + 31a0ca0 commit 0fa5491

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

release build.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Main
2+
3+
on: push
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v5
11+
- name: Build
12+
run: echo ${{ github.sha }} > Release.txt
13+
- name: Test
14+
run: cat Release.txt
15+
- name: Release
16+
uses: softprops/action-gh-release@v2
17+
if: github.ref_type == 'tag'
18+
with:
19+
files: |
20+
Release.txt
21+
LICENSE

0 commit comments

Comments
 (0)