Skip to content

test flow

test flow #4

name: Deploy to github1
on:
push:
tags:
- 'a[0-9]+.[0-9]+.[0-9]+'
## 2
jobs:
## 3
build:
runs-on: ubuntu-latest
steps:
# 1
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
# 2
- name: Build
run: echo ${{ github.sha }} > Release.txt
- name: Test
run: cat instuctions
- name: Release
uses: softprops/action-gh-release@v2
with:
append_body: true
token: ${{ secrets.TOKEN }}
files: |
instructions