cepeca updates #201
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
# Simple workflow for deploying static content to GitHub Pages | |
name: Dispatch preview workflow | |
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows | |
on: | |
# Runs on pushes, if all conditions are met: | |
push: | |
# ... on the master branch ... | |
branches: | |
- 'preview' | |
# ... skip tags only ... | |
tags-ignore: | |
- '**' | |
# ... any of these files changes ... | |
paths: | |
- 'website/amintiri/**' | |
- 'website/evenimente/**' | |
- 'website/blog/**' | |
- 'website/docs/**' | |
- 'website/i18n/**' | |
- 'website/src/**' | |
- 'website/static/**' | |
- 'website/*.js' | |
- 'website/*.ts' | |
- 'website/*.json' | |
- 'website/*.yml' | |
- '.github/workflows/dispatch-preview-workflow.yml' | |
# Keep this list in sync with the `publish-github-pages.yml`. | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
trigger-workflow: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
# https://github.com/actions/checkout | |
uses: actions/checkout@v4 | |
- name: Show environment | |
run: | | |
env | sort | |
pwd | |
ls -l | |
# convictional/trigger-workflow-and-wait@v1.6.5 is no longer maintained, | |
# call curl directly. | |
- name: Trigger preview build via curl | |
run: bash scripts/trigger-build-preview.sh ${{ secrets.API_DISPATCH_TOKEN }} |