Change outdated i386 arch name in the libc triplets (#390) #1480
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: Deploy Website | |
on: | |
workflow_call: | |
inputs: | |
ref: | |
type: string | |
required: true | |
push: | |
branches: | |
- main | |
concurrency: | |
group: website | |
jobs: | |
build: | |
name: Build | |
runs-on: [self-hosted, website] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
ref: "${{ inputs.ref }}" | |
clean: false | |
- name: Build the website | |
run: | | |
/home/ci/deps/zig-linux-x86_64-0.13.0/zig build --summary new -p /var/www/html/ |