Skip to content

Add code of conduct #48

Add code of conduct

Add code of conduct #48

Workflow file for this run

# SPDX-FileCopyrightText: 2023 Shun Sakai
#
# SPDX-License-Identifier: Apache-2.0 OR MIT
name: Deployment
on:
push:
branches:
- "develop"
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
permissions:
contents: write
jobs:
deploy:
name: Deploy
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Julia environment
uses: julia-actions/setup-julia@v1.9.2
with:
version: "1.9"
- name: Build a package
uses: julia-actions/julia-buildpkg@v1.4.4
- name: Deploy
uses: julia-actions/julia-docdeploy@v1.3.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}