Skip to content

Commit

Permalink
Fix GitHub Image Push Permissions (#1375)
Browse files Browse the repository at this point in the history
* Fix GitHub Actions status badge ref

Signed-off-by: Ivan Sim <ivan.sim@kasten.io>

* Add permissions to push to GH Package

Signed-off-by: Ivan Sim <ivan.sim@kasten.io>
  • Loading branch information
ihcsim committed Apr 12, 2022
1 parent 019530e commit 6e3375a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ jobs:
- uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
username: ${{ secrets.GH_USERNAME }}
password: ${{ secrets.GH_TOKEN }}
- run: tar -xvf ./src.tar.gz
- run: make release-snapshot
- run: ./build/push_images.sh
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Kanister

[![Go Report Card](https://goreportcard.com/badge/github.com/kanisterio/kanister)](https://goreportcard.com/report/github.com/kanisterio/kanister)
[![GitHub Actions](https://github.com/kanisterio/actions/kanister/workflows/main.yaml/badge.svg)](https://github.com/kanisterio/kanister/actions)
[![GitHub Actions](https://github.com/kanisterio/kanister/actions/workflows/main.yaml/badge.svg)](https://github.com/kanisterio/kanister/actions)
[![Build Status](https://travis-ci.com/kanisterio/kanister.svg?branch=master)](https://travis-ci.com/kanisterio/kanister)

A framework for data management in Kubernetes. It allows domain experts to
Expand Down

0 comments on commit 6e3375a

Please sign in to comment.