Skip to content

Commit

Permalink
fix: "" is not valid http(s) URL
Browse files Browse the repository at this point in the history
  • Loading branch information
delbetu committed Apr 30, 2024
1 parent 7d08cd7 commit 253450c
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,32 +23,34 @@ jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
# url: ${{ steps.deployment.outputs.page_url }}
url: https://delbetu.github.io/prawn_box/

runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.0
bundler-cache: true

- name: Install dependencies
run: bundle install

- name: Build static site
run: rake build_site

- name: Setup Pages
uses: actions/configure-pages@v5

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './dist' # where the site was built

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

0 comments on commit 253450c

Please sign in to comment.