Skip to content

Commit

Permalink
add workflow: trigger build armadaproject#2
Browse files Browse the repository at this point in the history
Signed-off-by: Mehdi Nassim KHODJA <[email protected]>
  • Loading branch information
naskio committed Jul 31, 2024
1 parent cb6daa1 commit c65a298
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

- name: Setup Pages
uses: actions/configure-pages@v5
if: github.ref == 'refs/heads/main' && steps.has-pages.outputs.has_pages == 'true'
if: github.ref == 'refs/heads/move-website' && steps.has-pages.outputs.has_pages == 'true'

- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
Expand All @@ -67,15 +67,15 @@ jobs:

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
if: github.ref == 'refs/heads/main' && steps.has-pages.outputs.has_pages == 'true'
if: github.ref == 'refs/heads/move-website' && steps.has-pages.outputs.has_pages == 'true'

deploy: # Deployment job
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main' && needs.build.outputs.has_pages == 'true'
if: github.ref == 'refs/heads/move-website' && needs.build.outputs.has_pages == 'true'
steps:
- name: Deploy to GitHub Pages
id: deployment
Expand Down

0 comments on commit c65a298

Please sign in to comment.