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

APIGOV-26360 - fix release #44

Merged
merged 1 commit into from
Sep 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/webmethods-agents-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
GOWORK: "off"
defaults:
run:
working-directory: ${{ env.GOPATH }}/discovery
working-directory: ${{ env.GOPATH }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -23,7 +23,7 @@ jobs:
go-version: 1.21

- name: Build discovery agent
working-directory: discovery
working-directory: .
run: |
git rev-parse --short HEAD > commit_id
echo "${{ github.ref_name }}" > version
Expand All @@ -45,7 +45,7 @@ jobs:
GOWORK: "off"
defaults:
run:
working-directory: ${{ env.GOPATH }}/traceability
working-directory: ${{ env.GOPATH }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -56,7 +56,7 @@ jobs:
go-version: 1.19

- name: Build traceability agent
working-directory: traceability
working-directory: .
run: |
git rev-parse --short HEAD > commit_id
echo "${{ github.ref_name }}" > version
Expand Down