Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish ARM64 Interference Scenarios #47

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ jobs:
- name: Set domain
run: echo "DOMAIN=osep.elisa.tech" >> $GITHUB_ENV

- name: Set base URL for preview if PR
if: github.ref != 'refs/heads/main'
run: echo "BASE_URL=https://${{ env.DOMAIN }}/${{ env.PR_PATH}}/" >> $GITHUB_ENV

- name: Setup python
uses: actions/setup-python@v5
with:
Expand All @@ -40,6 +36,12 @@ jobs:
- name: Checkout the triggering ref
uses: actions/checkout@v4

- name: Adjust BASE_URL and css if this is a PR
if: github.ref != 'refs/heads/main'
run: |
echo "BASE_URL=https://${{ env.DOMAIN }}/${{ env.PR_PATH}}/" >> $GITHUB_ENV
cat docs/stylesheets/draft.css >> docs/stylesheets/elisa.css

- name: Build site
run: |
pip install -r docs/requirements.txt
Expand Down
Loading