Skip to content

Commit

Permalink
fix: linters
Browse files Browse the repository at this point in the history
  • Loading branch information
logicalangel committed Apr 2, 2024
1 parent dfa7cbc commit d17e3b5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
cache: false

- name: Install Tools
working-directory: "src"
working-directory: "internal"
run: make tools

- name: Lint
working-directory: "src"
working-directory: "internal"
run: make lint

- name: Error Check
working-directory: "src"
working-directory: "internal"
run: make errors
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ jobs:
with:
go-version: "stable"
cache-dependency-path: |
src/go.sum
internal/go.sum
- name: Build
run: cd src && make prod
run: cd internal && make prod

- name: "Run release script"
run: node scripts/docker-release.mjs ${{ github.ref_name }}

- name: "Release"
uses: softprops/action-gh-release@v1
with:
files: ./src/bin/*
files: ./internal/bin/*
name: Unchained ${{ github.ref_name}}
tag_name: ${{ github.ref_name }}
prerelease: ${{ contains(github.ref_name, 'alpha') || contains(github.ref_name, 'beta') }}
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ docker/data
docker/pgadmin
.clinic
node_trace.*
src/bin
internal/bin
conf.*.private
.idea

0 comments on commit d17e3b5

Please sign in to comment.