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

Commit

Permalink
Add a thing
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanbeattie committed Jul 16, 2024
1 parent 77e3d22 commit 18ac215
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/01-build-and-test-rockstar-engine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: dotnet workload restore

- name: Build Rockstar
run: dotnet build Starship -c Release
run: dotnet build Starship -configuration Release

- name: Test Rockstar
run: dotnet test Starship -c Release
Expand Down
22 changes: 10 additions & 12 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,22 +54,20 @@ jobs:
id: pages
uses: actions/configure-pages@v5

- name: Build Pages
uses: actions/jekyll-build-pages@v1
with:
source: ./codewithrockstar.com
destination: ./_site

# - name: Build with Jekyll
# working-directory: ./codewithrockstar.com
# # Outputs to the './_site' directory by default
# run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
# env:
# JEKYLL_ENV: production
- name: Build with Jekyll
working-directory: ./codewithrockstar.com
# Outputs to the './_site' directory by default
run: |
cd codewithrockstar.com
bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production

- name: Upload artifact
# Automatically uploads an artifact from the './_site' directory by default
uses: actions/upload-pages-artifact@v3
with:
path: ./codewithrockstar.com/_site

# Deployment job
deploy:
Expand Down

0 comments on commit 18ac215

Please sign in to comment.