Skip to content

Commit 8a9e472

Browse files
committed
fix release
1 parent 096c5f5 commit 8a9e472

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/release.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,17 @@ permissions:
1313
jobs:
1414
setup:
1515
runs-on: ubuntu-latest
16-
outputs:
17-
mymatrix: ${{ steps.matrixStep.outputs.matrixItems }}
1816
steps:
1917
- name: Checkout Code
2018
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
2119
with:
2220
fetch-depth: 2
21+
- name: Log in to GitHub Container Registry
22+
uses: docker/login-action@v2
23+
with:
24+
registry: ghcr.io
25+
username: ${{ github.actor }}
26+
password: ${{ secrets.GITHUB_TOKEN }}
2327
- run: |
2428
docker build -t ghcr.io/firetail-io/kubernetes-sensor:${{ github.event.release.tag_name }} -f build_setup/Dockerfile .
2529
docker push ghcr.io/firetail-io/kubernetes-sensor:${{ github.event.release.tag_name }}

0 commit comments

Comments
 (0)