Skip to content

Bump the github-actions group across 1 directory with 5 updates #52

Bump the github-actions group across 1 directory with 5 updates

Bump the github-actions group across 1 directory with 5 updates #52

Workflow file for this run

name: Publish
on:
workflow_dispatch:
pull_request:
branches:
- main
jobs:
publish:
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
with:
python-version: '3.11'
- name: Install Dependencies
run: |
pip install -r requirements.txt
npm install netlify-cli -g
- name: Make top level files
run: make -C src html
- name: Assemble site
run: |
python scripts/site.py build
cp -r src/_build/html/* dist
- name: Publish to development
# Publish to preview for a PR
# Cannot publish from a fork because no access to secrets
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false }}
run: netlify deploy --dir=dist --site=oneapi-spec
- name: Publish to production
# Publish to production when manually triggered for main
if: ${{ github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/main' }}
run: netlify deploy --dir=dist --site=oneapi-spec --prod