Skip to content

Commit

Permalink
test action
Browse files Browse the repository at this point in the history
  • Loading branch information
solsson committed May 23, 2024
1 parent 87152b2 commit 56c91bb
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/images.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: images

on:
push:
branches:
- main

jobs:
publish:
name: Publish
runs-on: ubuntu-latest
permissions:
packages: write
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
uses: actions/setup-go@v2
with:
go-version: 1.15
-
uses: imjasonh/[email protected]
-
run: >-
crane cp docker.io/yolean/kafka-keyvalue:7fa31f42731fc20a77988b478a3896732cc3dc88
ghcr.io/${{ github.repository }}/kafka-keyvalue:7fa31f42731fc20a77988b478a3896732cc3dc88
;

0 comments on commit 56c91bb

Please sign in to comment.