Skip to content

Commit

Permalink
Update Go workflow for improved artifact organization
Browse files Browse the repository at this point in the history
Changed the file path for artifact uploads to a structured directory under 'release/mjm918/**/.*'. Also, removed unnecessary spacing and fixed a minor punctuation issue in the documentation comment. These changes streamline the workflow, ensuring better file management and clarity.
  • Loading branch information
mjm918 committed Aug 14, 2024
1 parent 1c8043a commit dfe1fa2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go.

name: Go

Expand All @@ -11,11 +11,11 @@ on:

jobs:
build:
name: Build, Test and Package on All Platforms
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -45,4 +45,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: release
path: release
path: release/mjm918/**/*.*

0 comments on commit dfe1fa2

Please sign in to comment.