You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
511 B
YAML
22 lines
511 B
YAML
name: publish images
|
|
|
|
on:
|
|
push:
|
|
branches: master
|
|
|
|
jobs:
|
|
publish_images:
|
|
runs-on: ubuntu-latest
|
|
name: Publish Docker images to Dockerhub
|
|
steps:
|
|
- name: Authenticate to Dockerhub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Build and push Docker images
|
|
run: |
|
|
bash release.sh
|