Skip to content

Commit

Permalink
fixing github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
antgrutta committed Apr 2, 2024
1 parent f411258 commit 45225cc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ on:
branches:
- main
paths-ignore:
- "*.md"
- '*.md'
pull_request:
branches:
- main
paths-ignore:
- "*.md"
- '*.md'
jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -20,8 +20,8 @@ jobs:
env:
CI: true
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/setup-go@v2.1.4
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.19.x
- run: go get -v -t -d ./...
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: release
on:
push:
tags:
- "v*"
- 'v*'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: cli/gh-extension-precompile@v1
- uses: actions/checkout@v4
- uses: cli/gh-extension-precompile@v1.4.0
with:
go_version: 1.19.x

0 comments on commit 45225cc

Please sign in to comment.