Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Commit

Permalink
fix(): ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
le-vlad committed May 8, 2024
1 parent f99426e commit 7677d03
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Create release
on:
push:
tags:
- '*'
- "*"
jobs:
build_release:
runs-on: ubuntu-latest
Expand All @@ -12,13 +12,13 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21.3'
go-version: "1.21.3"

- name: Log in to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
with:
username: ${{ secret.DOCKER_USERNAME }}
password: ${{ secret.DOCKER_PASSWORD }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Debug
run: |
Expand Down Expand Up @@ -49,4 +49,4 @@ jobs:
version: latest
args: -f .goreleaser.yaml release --clean
env:
GITHUB_TOKEN: ${{ secret.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 7677d03

Please sign in to comment.