Skip to content

doc: reorganize SSL configuration instructions in README #3

doc: reorganize SSL configuration instructions in README

doc: reorganize SSL configuration instructions in README #3

Workflow file for this run

name: Build and Push Docker Image
on:
push:
tags:
- '*' # Triggers on version tags
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build Docker image
run: |
docker build . -t augwit/wordpress:${{ github.ref_name }}
- name: Push Docker image
run: |
docker push augwit/wordpress:${{ github.ref_name }}