Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
ramin committed Oct 25, 2023
1 parent fc0f2eb commit a741462
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,16 @@ jobs:
steps:
- id: set-vars
run: |
echo "${{ env.GO_VERSION }}"
echo "go-version=${{env.GO_VERSION}}" >> "$GITHUB_OUTPUT"
# go:
# needs: setup
# uses: ./.github/workflows/go-ci.yml
# with:
# go-version: ${{ needs.setup.outputs.go-version }}
go:
needs: setup
uses: ./.github/workflows/go-ci.yml
with:
go-version: ${{ needs.setup.outputs.go-version }}

publish:
# needs: go
needs: go
uses: ./.github/workflows/publish.yml

release:
Expand All @@ -41,16 +40,13 @@ jobs:
steps:
- uses: actions/checkout@v2

- run: |
echo ${{ needs.setup.outputs.go-version }}
- uses: actions/setup-go@v4
with:
go-version: ${{ needs.setup.outputs.go-version }}

- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v4
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
Expand Down

0 comments on commit a741462

Please sign in to comment.