Skip to content

Commit

Permalink
update diversable action
Browse files Browse the repository at this point in the history
  • Loading branch information
mahdi739 committed Jan 10, 2024
1 parent aabed1c commit 19413a4
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion .github/workflows/diversable-deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,33 @@
steps:
name: Release to Github Pages

on:
push:
branches: [main]
workflow_dispatch:

permissions:
contents: write # for committing to gh-pages branch.
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
Github-Pages-Release:

timeout-minutes: 10

environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4 # repo checkout

# Install Rust Stable Toolchain, with Clippy & Rustfmt
Expand Down

0 comments on commit 19413a4

Please sign in to comment.