Skip to content

Commit

Permalink
Add deploy.yml worfklow, downloading build artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
ctmbl committed Oct 25, 2023
1 parent cd5812b commit ebca096
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Deploy HUGO website

on:
push:
branches: ["main"]

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

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "deploy"
cancel-in-progress: false

jobs:
# Deployment job
deploy:
runs-on: ubuntu-latest
steps:
- name: Download build Artifacts
uses: actions/download-artifact@v3
with:
name: build

0 comments on commit ebca096

Please sign in to comment.