Skip to content

Commit

Permalink
Workflow for deploying the website when merging to main
Browse files Browse the repository at this point in the history
  • Loading branch information
Baklap4 committed Aug 30, 2023
1 parent 06cbb2f commit 457d40b
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/build_and_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Build and Release UltraStar Format Specification Website

# Controls when the workflow will run
on:
# Triggers the workflow on merges to master, release branches,
# all PRs, and release tags
push:
branches:
- main

# On anything pull request related
pull_request:

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
deploy:
if: ${{ github.ref == 'refs/heads/main' }}
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
runs-on: ubuntu-latest

permissions:
contents: read
pages: write
id-token: write

steps:
- name: Setup Pages
uses: actions/configure-pages@v3

- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
# Upload docs folder
path: './docs'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 457d40b

Please sign in to comment.