-
-
Notifications
You must be signed in to change notification settings - Fork 67
22 lines (20 loc) · 686 Bytes
/
Copy pathrelease.yml
File metadata and controls
22 lines (20 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: Release
on:
schedule:
- cron: '0 3 * * 1'
workflow_dispatch:
inputs:
next_release:
type: string
description: The version to release
jobs:
release:
runs-on: ubuntu-latest
name: Release
steps:
- uses: actions/checkout@v6
- run: git config user.email 'jakub@zalas.pl' && git config user.name 'Jakub Zalas'
- run: sudo apt-get update && sudo apt-get install -y hub
- run: make auto-release NEXT_RELEASE="${{ github.event.inputs.next_release }}"
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}