Skip to content

Commit

Permalink
Fix github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
robertvolkmann committed Mar 20, 2024
1 parent 0282dea commit 68583e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.DOCKER_REGISTRY_USER }}
password: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout
uses: actions/checkout@v4
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/test.yaml → .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Test Action
name: Verify Action
on:
pull_request:
branches:
Expand All @@ -13,7 +13,7 @@ on:

jobs:
build:
name: Test Build
name: Verify Build
runs-on: ubuntu-latest

steps:
Expand All @@ -27,4 +27,5 @@ jobs:

- name: Verify
run: |
make revendor
make verify

0 comments on commit 68583e7

Please sign in to comment.