mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-04-23 20:21:01 +02:00
Update the dependencies to the latest version. The biggest change is the update to Node.js 24. Link: https://github.com/openwrt/openwrt/pull/22903 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
25 lines
362 B
YAML
25 lines
362 B
YAML
name: Create GitHub release
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v3
|
|
with:
|
|
draft: true
|
|
prerelease: true
|