Skip to content

Commit

Permalink
Merge pull request #7 from GreenSpaceNASA/fix-ci
Browse files Browse the repository at this point in the history
fix(ci): tags & pull recursive
  • Loading branch information
jorgechato authored Oct 28, 2023
2 parents a59ceda + 2446fb9 commit 600bad5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/changelog-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Get tags
run: git fetch --tags origin
fetch-tags: true

- name: Setup go
uses: actions/setup-go@v4
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Test
on:
push:
branches-ignore:
- 'changelog_*'

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: 'recursive'
token: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: 'true'
submodules: 'recursive'
token: ${{ secrets.GITHUB_TOKEN }}

- name: Install protoc
Expand Down

0 comments on commit 600bad5

Please sign in to comment.