Generate GetAda.dev #14
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: Generate GetAda.dev | |
on: | |
workflow_dispatch: | |
# Use this stuff | |
# https://github.com/cpina/github-action-push-to-another-repository | |
# https://github.com/marketplace/actions/setup-appimage for | |
# https://github.com/yet-another-static-site-generator/yass/releases/tag/v3.0 | |
jobs: | |
Generate_Website: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install YASS | |
uses: robinraju/release-downloader@v1 | |
with: | |
repository: 'yet-another-static-site-generator/yass' | |
out-file-path: 'yass_gen' | |
fileName: 'yass-linux_x86_64.zip ' | |
latest: true | |
extract: true | |
- name: Add yass to path | |
run: > | |
chmod +x yass_gen/yass && | |
echo "$PWD/yass_gen" >> $GITHUB_PATH | |
# I'm sure there's a better way to do this.... | |
- name: Download aarch64 mac binary | |
uses: robinraju/release-downloader@v1 | |
with: | |
out-file-path: 'macos_aarch64' | |
fileName: 'getada-macos_aarch64.zip' | |
latest: true | |
extract: true | |
- name: Download x86_64 mac binary | |
uses: robinraju/release-downloader@v1 | |
with: | |
out-file-path: 'macos_x86_64' | |
fileName: 'getada-macos_x86_64.zip' | |
latest: true | |
extract: true | |
- name: Download x86_64 linux binary | |
uses: robinraju/release-downloader@v1 | |
with: | |
out-file-path: 'linux_x86_64' | |
fileName: 'getada-linux_x86_64.zip' | |
latest: true | |
extract: true | |
- name: Build website | |
run: > | |
yass build www && | |
cp -v linux_x86_64/bin/getada www/_output/dist/x86_64-unknown-linux-gnu/ && | |
ls www/_output/dist/x86_64-unknown-linux-gnu/getada && | |
cp -v macos_aarch64/bin/getada www/_output/dist/aarch64-apple-darwin/ && | |
ls www/_output/dist/aarch64-apple-darwin/getada && | |
cp -v macos_x86_64/bin/getada www/_output/dist/x86_64-apple-darwin/ && | |
ls www/_output/dist/x86_64-apple-darwin/getada |