Skip to content

Merge branch 'main' of https://github.com/allnnde/get_last_deployment #10

Merge branch 'main' of https://github.com/allnnde/get_last_deployment

Merge branch 'main' of https://github.com/allnnde/get_last_deployment #10

Workflow file for this run

name: Rebuild Changes
on:
push:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
permissions:
issues: write
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install packages
run: npm ci
- name: Rebuild
run: npm run release
- uses: actions/[email protected]
- name: Conventional Changelog Action
id: changelog
uses: TriPSs/[email protected]
with:
github-token: ${{ secrets.github_token }}
version-file: "package.json"
skip-on-empty: false
- name: Create Release
uses: ncipollo/release-action@v1
env:
GITHUB_TOKEN: ${{ secrets.github_token }}
with:
tag: ${{ steps.changelog.outputs.tag }}
name: ${{ steps.changelog.outputs.tag }}
body: ${{ steps.changelog.outputs.clean_changelog }}