diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2023-04-21 10:51:40 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2023-04-21 10:54:56 +0200 |
commit | 88c803335f1d251083a6b505814f90a07a621318 (patch) | |
tree | 43cf4e80c9e1a2154dca65fa11f5895503d5868c /.github/workflows/release.yml | |
parent | e0c2d6a1f8350268ea9b2474c7f84c8e5e791ab3 (diff) | |
download | feed2imap-go-88c803335f1d251083a6b505814f90a07a621318.tar.gz feed2imap-go-88c803335f1d251083a6b505814f90a07a621318.tar.bz2 feed2imap-go-88c803335f1d251083a6b505814f90a07a621318.zip |
Fix workflow: '1.20' needs to be quoted
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/release.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 86195d1..5887bd0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Go 1.20 uses: actions/setup-go@v4 with: - go-version: 1.20 + go-version: '1.20' id: go - name: Checkout |