Skip to content

Commit

Permalink
ci: gitignore goreleaser artifacts dir (#23)
Browse files Browse the repository at this point in the history
* ci: gitignore goreleaser artifacts dir

* no snapshot, no pr runs
  • Loading branch information
igor-sirotin committed May 17, 2024
1 parent e637b71 commit 97af302
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,12 @@ jobs:

- name: Make directories
run: |
mkdir -p ./2sp-build
mkdir -p ./.goreleaser-artifacts
- name: Download binaries
uses: actions/download-artifact@v4
with:
path: ./2sp-build
path: ./.goreleaser-artifacts

- name: Release
uses: goreleaser/goreleaser-action@v5
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.idea/
dist
.DS_Store
.DS_Store

# Used in ci for goreleaser
.goreleaser-artifacts
2 changes: 1 addition & 1 deletion ci/.goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ release:
draft: true
mode: append
extra_files:
- glob: ./2sp-build/**/*
- glob: ./.goreleaser-artifacts/**/*

0 comments on commit 97af302

Please sign in to comment.