Skip to content

Commit

Permalink
use a different action
Browse files Browse the repository at this point in the history
  • Loading branch information
kim841 committed Jul 11, 2024
1 parent 81f41d4 commit 1e47e68
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,22 @@ name: "release"

on:
push:
branches:
- "feature/50-automatiser-release"
tags:
- v*

jobs:
pre-release:
name: "Pre Release"
runs-on: "ubuntu-latest"

steps:
- uses: "marvinpinto/action-automatic-releases@latest"
- uses: "actions/create-release@latest"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "test"
prerelease: true
title: "Development Build"
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
${{ steps.Changelog.outputs.changelog }}
draft: false
prerelease: false

0 comments on commit 1e47e68

Please sign in to comment.