diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2023-04-23 15:04:36 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2023-04-23 15:04:36 +0200 |
commit | 4655faf9804a612176b18f2458817f78df8dbb2e (patch) | |
tree | 5d7299dcc5a80abc8dc858560ff11099220a5e2c /.github | |
parent | 1f7efef2241ef5db699077dce9c5cd7b608a023c (diff) | |
download | feed2imap-go-4655faf9804a612176b18f2458817f78df8dbb2e.tar.gz feed2imap-go-4655faf9804a612176b18f2458817f78df8dbb2e.tar.bz2 feed2imap-go-4655faf9804a612176b18f2458817f78df8dbb2e.zip |
[workflow] Port changes also to release
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release.yml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5887bd0..2057567 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,17 +11,16 @@ jobs: runs-on: ubuntu-latest steps: - - name: Set up Go 1.20 - uses: actions/setup-go@v4 - with: - go-version: '1.20' - id: go - - name: Checkout uses: actions/checkout@v3 with: fetch-depth: 0 + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version-file: 'go.mod' + - name: Get version from tag uses: little-core-labs/get-git-tag@v3.0.2 id: tag_name |