Skip to content

Add COMEX 2024

Add COMEX 2024 #41

Workflow file for this run

name: Deploy changes
on:
push:
branches:
- main
permissions:
contents: read
statuses: write
deployments: write
jobs:
build-and-deploy:
name: Build
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: Set up Nix
uses: cachix/install-nix-action@v20
- name: Set up nix cache
uses: DeterminateSystems/magic-nix-cache-action@v1
- name: Build
run: |
nix build
- name: Deploy to Netlify
uses: nwtgck/[email protected]
with:
publish-dir: "./result/public"
production-branch: main
production-deploy: true
github-deployment-environment: production
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: "Deploy from GitHub Actions"
enable-commit-comment: false
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes: 1