mirror of
https://github.com/shirou/gopsutil.git
synced 2025-05-15 19:29:13 +08:00

It's important to make sure the SHA's are from the original repositories and not forks.
For reference:
https://github.com/actions/checkout/releases/tag/v3.5.2
8e5e7e5ab8
Signed-off-by: Gabriela Gutierrez <gabigutierrez@google.com>
16 lines
315 B
YAML
16 lines
315 B
YAML
on:
|
|
schedule:
|
|
- cron: '0 1 1 * *' # UTC 01:00 on the first day of the Month
|
|
|
|
name: Release
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
|
- name: Release
|
|
run: make release
|