Tag Docker Images #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tag Docker Images | |
on: | |
schedule: | |
- cron: '0 3 * * *' # Every day at 3am UTC. | |
workflow_dispatch: | |
jobs: | |
tag-docker-images: | |
if: github.repository == 'EventStore/EventStore' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Tag and Push | |
uses: EventStore/Automations/tag-docker-images@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/github-script@v6 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
await github.rest.actions.createWorkflowDispatch({ | |
owner: 'EventStore', | |
repo: 'EventStore-Client-gRPC-TestData', | |
workflow_id: 'build.yml', | |
ref: 'master', | |
inputs: { | |
'repository': "'"$GITHUB_REPOSITORY"'", | |
'version': 'previous-lts' | |
} | |
}); | |
await github.rest.actions.createWorkflowDispatch({ | |
owner: 'EventStore', | |
repo: 'EventStore-Client-gRPC-TestData', | |
workflow_id: 'build.yml', | |
ref: 'master', | |
inputs: { | |
'repository': "'"$GITHUB_REPOSITORY"'", | |
'version': 'lts' | |
} | |
}); | |
await github.rest.actions.createWorkflowDispatch({ | |
owner: 'EventStore', | |
repo: 'EventStore-Client-gRPC-TestData', | |
workflow_id: 'build.yml', | |
ref: 'master', | |
inputs: { | |
'repository': "'"$GITHUB_REPOSITORY"'", | |
'version': 'ci' | |
} | |
}); |