Build Linux Artifacts #453
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: Build Linux Artifacts | |
on: | |
workflow_dispatch: | |
inputs: | |
tags: | |
description: "Version tags" | |
jobs: | |
build: | |
runs-on: "ubuntu-latest" | |
container: | |
image: yaoapp/yao-build:0.10.4 | |
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 | |
- 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 |