Skip to content

fix tests: update bootloader and persistence tests for GRUB migration #160

fix tests: update bootloader and persistence tests for GRUB migration

fix tests: update bootloader and persistence tests for GRUB migration #160

Workflow file for this run

name: Release
on:
push:
branches: [main, master]
tags:
- 'v*'
workflow_dispatch:
permissions:
contents: write
jobs:
release:
name: Create Release
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Get tag
id: get_tag
run: echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
- name: Create Release
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
with:
tag_name: ${{ steps.get_tag.outputs.TAG }}
name: ${{ steps.get_tag.outputs.TAG }}
draft: false
prerelease: false