Add testing farm outage 5th of August (#153) #161
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
name: Build and Deploy | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
if: github.repository_owner == 'packit' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Hugo Deploy GitHub Pages | |
uses: benmatselby/hugo-deploy-gh-pages@v2.1.0 | |
env: | |
CNAME: status.packit.dev | |
GITHUB_ACTOR: usercont-release-bot | |
HUGO_VERSION: 0.98.0 | |
HUGO_EXTENDED: true | |
TARGET_REPO: packit/status-github-pages | |
TARGET_BRANCH: main | |
TOKEN: ${{ secrets.RELEASEBOT_GITHUB_TOKEN }} |