ser, de: Some more cleanup for std.enums breakage #195
This file contains 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
name: docs | |
on: | |
push: | |
branches: [main] | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: setup-zig | |
uses: goto-bus-stop/setup-zig@v2 | |
- name: build | |
run: zig build docs | |
- name: deploy | |
uses: s0/git-publish-subdir-action@develop | |
env: | |
REPO: self | |
BRANCH: docs | |
FOLDER: zig-out/docs/getty | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |