Add go work init to workflows

This commit is contained in:
Slug-Boi
2024-05-17 21:38:27 +02:00
parent 6b73b6b9c5
commit cb4a6fd6c7
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -12,6 +12,8 @@ jobs:
- name: Setup Go - name: Setup Go
uses: actions/setup-go@v3 uses: actions/setup-go@v3
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Setup Go Workfile
run: go work init ./ci ./src_code/go_src
- run: go get dagger.io/dagger@latest - run: go get dagger.io/dagger@latest
- run: mkdir ./dist - run: mkdir ./dist
- run: go run ci/build_test_release.go - run: go run ci/build_test_release.go
+2
View File
@@ -15,6 +15,8 @@ jobs:
- name: Setup Go - name: Setup Go
uses: actions/setup-go@v3 uses: actions/setup-go@v3
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Setup Go Workfile
run: go work init ./ci ./src_code/go_src
- name: Get Dagger - name: Get Dagger
run: go get dagger.io/dagger@latest run: go get dagger.io/dagger@latest
- name: Run Dagger Test Workflow - name: Run Dagger Test Workflow