Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyasMoutawwakil committed Aug 14, 2024
1 parent 65fa416 commit 766adc8
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ on:
- main
paths:
- docker/**
- .github/workflows/build_and_publish_docker_images.yaml
- .github/workflows/images.yaml
pull_request:
paths:
- docker/**
- .github/workflows/images.yaml
schedule:
- cron: "0 0 * * *"

Expand All @@ -29,7 +33,7 @@ jobs:
runs-on: ubuntu-latest

permissions:
contents: read
contents: write
packages: write
id-token: write

Expand All @@ -40,9 +44,9 @@ jobs:
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GH_TOKEN }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker images
id: meta
Expand Down

0 comments on commit 766adc8

Please sign in to comment.