- Updated the Dockerfiles and GitHub Actions workflows to reference version 1.0.0 of the Yao build environment and Go, ensuring compatibility with the latest features and improvements. - Adjusted the Go version in the macOS workflow and updated the Dockerfile to install Go 1.25.0, enhancing the build process.
48 lines
1.4 KiB
YAML
48 lines
1.4 KiB
YAML
name: Build Linux Artifacts
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
tags:
|
|
description: "Version tags"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: "ubuntu-latest"
|
|
container:
|
|
image: yaoapp/yao-build:1.0.0
|
|
|
|
env:
|
|
CF_ACCESS_KEY_ID: ${{ secrets.CF_ACCESS_KEY_ID }}
|
|
CF_SECRET_ACCESS_KEY: ${{ secrets.CF_SECRET_ACCESS_KEY }}
|
|
R2_BUCKET: ${{ secrets.R2_BUCKET }}
|
|
R2_ACCOUNT_ID: ${{ secrets.R2_ACCOUNT_ID }}
|
|
|
|
steps:
|
|
- name: Configure R2 For Cloudflare
|
|
run: |
|
|
aws configure set aws_access_key_id $CF_ACCESS_KEY_ID
|
|
aws configure set aws_secret_access_key $CF_SECRET_ACCESS_KEY
|
|
aws configure set default.region us-east-1 # Update with your R2 region if different
|
|
aws configure set default.s3.signature_version s3v4
|
|
aws configure set default.s3.endpoint_url https://$R2_ACCOUNT_ID.r2.cloudflarestorage.com
|
|
aws --version
|
|
|
|
- name: Build
|
|
run: |
|
|
export PATH=$PATH:/github/home/go/bin
|
|
/app/build.sh
|
|
ls -l /data
|
|
|
|
- name: Archive production artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: yao-linux
|
|
path: |
|
|
/data/*
|
|
|
|
- name: Push To R2 Cloudflare
|
|
run: |
|
|
for file in /data/*; do
|
|
aws s3 cp $file s3://$R2_BUCKET/archives/ --endpoint-url https://$R2_ACCOUNT_ID.r2.cloudflarestorage.com
|
|
done
|