Skip to content

Commit

Permalink
Merge pull request #25 from djengua/task/handlers
Browse files Browse the repository at this point in the history
pipeline
  • Loading branch information
djengua committed Dec 28, 2023
2 parents f9f97b7 + 6db5110 commit d4ab51c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
uses: actions/setup-go@v3
with:
go-version: ^1.2
- name: Check out code into the Go module directory
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ^1.2
- name: Check out code into hte Go module directory
Expand All @@ -63,12 +63,12 @@ jobs:
needs: test
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ^1.2

- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Build
run: make build
Expand All @@ -79,7 +79,7 @@ jobs:
cp api artifacts/.
- name: Archive
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: api
path: artifacts
Expand All @@ -90,9 +90,9 @@ jobs:
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Download binay
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: api
- name: Create Release
Expand Down

0 comments on commit d4ab51c

Please sign in to comment.