We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 096c5f5 commit 8a9e472Copy full SHA for 8a9e472
.github/workflows/release.yaml
@@ -13,13 +13,17 @@ permissions:
13
jobs:
14
setup:
15
runs-on: ubuntu-latest
16
- outputs:
17
- mymatrix: ${{ steps.matrixStep.outputs.matrixItems }}
18
steps:
19
- name: Checkout Code
20
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
21
with:
22
fetch-depth: 2
+ - name: Log in to GitHub Container Registry
+ uses: docker/login-action@v2
23
+ with:
24
+ registry: ghcr.io
25
+ username: ${{ github.actor }}
26
+ password: ${{ secrets.GITHUB_TOKEN }}
27
- run: |
28
docker build -t ghcr.io/firetail-io/kubernetes-sensor:${{ github.event.release.tag_name }} -f build_setup/Dockerfile .
29
docker push ghcr.io/firetail-io/kubernetes-sensor:${{ github.event.release.tag_name }}
0 commit comments