Skip to content

Commit

Permalink
Update ightlyn.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
BoQsc authored Mar 30, 2023
1 parent 9a4b933 commit 0cd819b
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions .github/workflows/ightlyn.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
# This is a basic workflow to help you get started with the GitHub Auto-Release on Commit Action.

name: AutoRelease
name: "pre-release"

on:
push:
branches: [ main ]
branches:
- "main"

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
release:
# The type of runner that the job will run on
runs-on: ubuntu-latest
pre-release:
name: "Pre Release"
runs-on: "ubuntu-latest"

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- uses: CupOfTea696/gh-action-auto-release@v1.0.0
# ...
- name: "Build & test"
run: |
echo "done!"
- uses: "marvinpinto/action-automatic-releases@latest"
with:
title: "Release: $version"
tag: "v$semver"
draft: false
regex: "/^Release: #{semver}$/i"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Development Build"
files: |
LICENSE.txt
*.jar

0 comments on commit 0cd819b

Please sign in to comment.