1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 05:40:11 +01:00

Improve release action

* Checkout more so we also get the release tags, using 0 as
   this should checkout all tags according to the documentation
   of https://github.com/actions/checkout
This commit is contained in:
Bernhard Reiter 2022-05-11 11:13:53 +02:00
parent d8d6eb3f43
commit e135628db0
No known key found for this signature in database
GPG key ID: 2B7BA3BF9BC3A554

View file

@ -11,6 +11,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# make sure that we checkou tags for git describe
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3