Skip to content

try filepath again #197

try filepath again

try filepath again #197

Workflow file for this run

name: Check Docker Compose development environment
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
# - name: Install Composer dependencies
# uses: php-actions/composer@v6
# - name: Build the stack
# run: docker compose up -d
# - name: Setup environment file with database settings
# run: cp .env.example .env
# - name: Wait for MariaDB to come up
# run: sleep 30
# - name: Test WordPress is running successfully
# run: curl -s --retry-delay 5 --retry 5 --retry-connrefused http://localhost:8082/
- name: Zip Theme
run: |
cd web/app/themes
zip -r theme.zip future-natures/*
working-directory: ${{ github.workspace }}
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
with:
files: |
theme.zip
tag_name: v1.0.0
env:
GITHUB_TOKEN: ${{ secrets.ZIP_RELEASE_TOKEN }}
- name: Get Release URL
run: echo "Release URL ${{ steps.create_release.outputs.html_url }}"