[blog] Blog post on the Libsodium vulnerability regarding edd25519 point validation #27
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| if: github.ref != 'refs/heads/main' | |
| steps: | |
| - name: 'Checkout' | |
| uses: actions/checkout@main | |
| - name: 'Build only' | |
| uses: shalzz/zola-deploy-action@master | |
| env: | |
| BUILD_DIR: . | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| BUILD_ONLY: true | |
| build_and_deploy: | |
| runs-on: ubuntu-latest | |
| if: github.ref == 'refs/heads/main' | |
| steps: | |
| - name: 'Checkout' | |
| uses: actions/checkout@main | |
| - name: 'Build and deploy' | |
| uses: shalzz/zola-deploy-action@master | |
| env: | |
| PAGES_BRANCH: gh-pages | |
| BUILD_DIR: . | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |