1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2024-12-30 23:17:53 +02:00

Auto-Release - make a better release

This commit is contained in:
Gerkiz 2022-08-07 22:35:49 +02:00
parent bb0e8c8f7f
commit fbb857d2e0

View File

@ -10,10 +10,25 @@ jobs:
auto-release:
name: 'Auto Release'
runs-on: 'ubuntu-latest'
steps:
- uses: 'marvinpinto/action-automatic-releases@latest'
- name: Checkout code
uses: actions/checkout@v2
- name: Changelog
uses: scottbrenner/generate-changelog-action@master
id: Changelog
env:
REPO: ${{ github.repository }}
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
automatic_release_tag: 'latest'
tag_name: ${{ github.ref }}
release_name: Main Scenario
body: |
This is the main release of the stable version of Factorio.
Check out the [wiki](https://github.com/ComfyFactory/ComfyFactorio/wiki) for getting started.
${{ steps.Changelog.outputs.changelog }}
draft: false
prerelease: false