Skip to content
This repository has been archived by the owner on Feb 19, 2024. It is now read-only.

Uploads artifact to subdir for brnch and prints deployment url #2

Uploads artifact to subdir for brnch and prints deployment url

Uploads artifact to subdir for brnch and prints deployment url #2

Workflow file for this run

name: Build Jekyll site
on:
push:
branches:
- "mxskylar_dev_deploy"
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Build
uses: actions/jekyll-build-pages@v1
with:
destination: "./_dev/${{ github.ref_name }}"
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: "./_dev/${{ github.ref_name }}"
- name: Extract branch name
shell: bash
run: echo "${{ steps.deployment.outputs.page_url }}"
id: test
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}