Skip to content

Commit

Permalink
Update ightlyn.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
BoQsc committed Mar 30, 2023
1 parent 80941a6 commit 17e809d
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/ightlyn.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
name: "pre-release"
# This is a basic workflow to help you get started with the GitHub Auto-Release on Commit Action.

name: AutoRelease

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

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

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

0 comments on commit 17e809d

Please sign in to comment.