Skip to content

Commit

Permalink
Correct the dpservice name in workflow files
Browse files Browse the repository at this point in the history
Signed-off-by: Guvenc Gulce <[email protected]>
  • Loading branch information
guvenc committed Nov 30, 2023
1 parent a220fb0 commit dd40dcb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-docker-tester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
id: meta
with:
images: |
ghcr.io/${{ github.repository_owner }}/dp-service-tester
ghcr.io/${{ github.repository_owner }}/dpservice-tester
tags: |
type=semver,pattern={{version}}
type=schedule
Expand Down Expand Up @@ -101,4 +101,4 @@ jobs:
- name: Run tests
id: run_tests
run: |
docker run --privileged --mount type=bind,source=/dev/hugepages,target=/dev/hugepages ghcr.io/ironcore-dev/dp-service-tester:${{ env.DOCKER_IMAGE_SHA }}
docker run --privileged --mount type=bind,source=/dev/hugepages,target=/dev/hugepages ghcr.io/ironcore-dev/dpservice-tester:${{ env.DOCKER_IMAGE_SHA }}
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
id: meta
with:
images: |
ghcr.io/${{ github.repository_owner }}/dp-service
ghcr.io/${{ github.repository_owner }}/dpservice
tags: |
type=semver,pattern={{version}}
type=schedule
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@ on:

jobs:
update_release_draft:
runs-on:
labels: self-hosted
group: organization/default
permissions:
# write permission is required to create a github release
contents: write
# write permission is required for autolabeler
# otherwise, read permission is required at least
pull-requests: write
runs-on: ubuntu-latest
steps:
# Drafts your next Release notes as Pull Requests are merged into "main"
- uses: release-drafter/release-drafter@v5
with:
disable-releaser: github.ref != 'refs/heads/main'
config-name: release-drafter.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit dd40dcb

Please sign in to comment.