Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
name: 'release-please'
on:
push:
branches:
- master
- 'hotfix/**'
jobs:
update-nix-flake:
runs-on: ubuntu-latest
outputs:
NPM_DEPS_HASH: ${{ steps.prefetch.outputs.NPM_DEPS_HASH }}
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.WORKFLOW_GIT_ACCESS_TOKEN }}
- name: Install Nix
uses: cachix/install-nix-action@v26
with:
github_access_token: ${{ secrets.PERSO_TOKEN }}
nix_path: nixpkgs=channel:nixos-unstable
- name: Install prefetch-npm-deps
run: nix-env -i prefetch-npm-deps -f '<nixpkgs>'
- name: prefetch
id: prefetch
run: echo "NPM_DEPS_HASH=$(prefetch-npm-deps package-lock.json)" >> $GITHUB_OUTPUT
- name: escape
id: escape
run: echo "NPM_DEPS_HASH_ESCAPED=$(echo ${{ steps.prefetch.outputs.NPM_DEPS_HASH }} | sed 's/\//\\\\\//gip')" >> $GITHUB_OUTPUT
- name: update
run: sed -i "s/sha[^\"]\+/${{ steps.escape.outputs.NPM_DEPS_HASH_ESCAPED }}/" flake.nix
- name: check for update
run: if [-n $(git status --porcelain)] then
- run: git add .
- run: nix flake update
- run: |
git config --global user.name 'Florian Sanders'
git config --global user.email 'florian.sanders@clever-cloud.com'
git commit -m "chore(flake): update nix flake"
git push
release-please:
runs-on: ubuntu-latest
needs: update-nix-flake
steps:
- uses: google-github-actions/release-please-action@v3
with:
token: ${{ secrets.WORKFLOW_GIT_ACCESS_TOKEN }}
release-type: node
include-v-in-tag: false
default-branch: ${{ github.ref_name }}
changelog-types: '[{"type": "feat", "section": "πŸš€ Features"}, {"type": "fix", "section": "πŸ› Bug Fixes"}, {"type": "perf", "section": "πŸ’ͺ Performance Improvements"}, {"type": "deps", "section": "πŸ—ƒοΈ Dependencies", "hidden": true}, {"type": "revert", "section": "↩ Reverts"}, {"type": "docs", "section": "πŸ“– Documentation", "hidden": true}, {"type": "style", "section": "🎨 Styles", "hidden": true}, {"type": "chore", "section": "🧹 Miscellaneous Chores", "hidden": true}, {"type": "refactor", "section": "πŸ›  Code Refactoring", "hidden": true}, {"type": "test", "section": "πŸ”¬ Tests", "hidden": true}, {"type": "build", "section": "πŸ—οΈ Build System", "hidden": true}, {"type": "ci", "section": "πŸ€– Continuous Integration", "hidden": true}]'