Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): update token variable #2346

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ on:
tags:
- "v*"
branches:
- 'release/*'
- 'release/*'

env:
REPO_NAME: ${{ github.repository_owner }}/beacon-kit
IMAGE_NAME: ${{ github.repository_owner }}/beacon-kit
GH_TOKEN: ${{ secrets.DEV_PAT }}
GH_TOKEN: ${{ secrets.GHCR_TOKEN }}

jobs:
# Job to extract version
Expand All @@ -48,7 +48,7 @@ jobs:
id: extract_version
outputs:
VERSION: ${{ steps.extract_version.outputs.VERSION }}

# Job to build release
build:
name: build release
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
run: |
make build-${{ matrix.configs.target-os }}-${{ matrix.configs.arch }}-${{ needs.extract-version.outputs.VERSION }}
tar -czvf ${{ matrix.build.binary }}-${{ needs.extract-version.outputs.VERSION }}-${{ matrix.configs.target-os }}-${{ matrix.configs.arch }}.tar.gz -C build/bin .

# Upload binaries
- uses: actions/upload-artifact@v4
with:
Expand Down
Loading