![zyachel](/assets/img/avatar_default.png)
the application is now rewritten in next.js. this commit also adds the ability to see trailers, did you know, more like this, etc. on title page. BREAKING CHANGE: the whole application is rewritten from scratch.
30 lines
752 B
YAML
30 lines
752 B
YAML
name: release
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- next
|
|
|
|
jobs:
|
|
changelog-and-release:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: generate changelog and bump version
|
|
id: changelog
|
|
uses: TriPSs/conventional-changelog-action@v3
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: create release
|
|
uses: actions/create-release@v1
|
|
if: ${{ steps.changelog.outputs.skipped == 'false' }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: ${{ steps.changelog.outputs.tag }}
|
|
release_name: ${{ steps.changelog.outputs.tag }}
|
|
body: ${{ steps.changelog.outputs.clean_changelog }}
|