- Created "My 2023 Coding Edition" post detailing projects and experiences in Rust and game development. - Added "My 2024 and 2025 roadmap" outlining goals and projects for the upcoming years. - Introduced "Python Tutorial - Introduction" and "Python - Variables" posts to teach Python programming basics. - Published "ROADMAP for 2023" to outline initial goals for the year. - Added "My Rust little adventure" post summarizing various Rust projects undertaken. - Released "Spanish Inquisition - 3.0.1 UPDATE" detailing the latest game update and features. - Added multiple background images in AVIF format for website use. - Removed unused SVG files to clean up the public directory.
25 lines
705 B
YAML
25 lines
705 B
YAML
name: Build and Deploy Blog
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-and-deploy-local:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Rebuild and Deploy with Docker Compose
|
|
run: |
|
|
# Use the host's Docker to build the image defined in docker-compose.yml
|
|
# The '--no-cache' flag ensures it picks up any changes from your repository
|
|
# The 'up -d' command will recreate only the services that have changed
|
|
docker-compose up -d --build --no-cache
|
|
|
|
# Clean up any old, unused images to save disk space
|
|
docker image prune -f |