🌈️ apply a wallpaper based on the weather outside
0

Configure Feed

Select the types of activity you want to include in your feed.

fix(ci): populate other jobs with runs-on

Angel Wang (Jun 22, 2026, 10:30 PM -0600) bdd253ff 176382f0

+28 -19
+28 -19
.github/workflows/build.yml
··· 42 42 path: build/ 43 43 44 44 linux-x86_64: 45 + runs-on: ubuntu-latest 46 + 45 47 steps: 46 48 - name: Setup repo 47 49 uses: actions/checkout@v4 ··· 70 72 path: build/ 71 73 72 74 linux-aarch64: 75 + runs-on: ubuntu-latest 76 + 73 77 steps: 74 78 - name: Setup repo 75 79 uses: actions/checkout@v4 ··· 98 102 path: build/ 99 103 100 104 darwin-x86_64: 105 + runs-on: ubuntu-latest 106 + 101 107 steps: 102 108 - name: Setup repo 103 109 uses: actions/checkout@v4 ··· 126 132 path: build/ 127 133 128 134 darwin-aarch64: 129 - - name: Setup repo 130 - uses: actions/checkout@v4 135 + runs-on: ubuntu-latest 131 136 132 - - name: Setup Deno 133 - uses: denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31 # v1.1.2 134 - with: 135 - deno-version: v2.8.x 137 + steps: 138 + - name: Setup repo 139 + uses: actions/checkout@v4 136 140 137 - - name: Install Deno packages 138 - run: deno install 141 + - name: Setup Deno 142 + uses: denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31 # v1.1.2 143 + with: 144 + deno-version: v2.8.x 145 + 146 + - name: Install Deno packages 147 + run: deno install 139 148 140 - - name: Run linter 141 - run: deno lint 149 + - name: Run linter 150 + run: deno lint 142 151 143 - - name: Build apply 144 - run: deno compile --target aarch64-apple-darwin --output build/rainwall-apply -A ./src/apply/index.ts 152 + - name: Build apply 153 + run: deno compile --target aarch64-apple-darwin --output build/rainwall-apply -A ./src/apply/index.ts 145 154 146 - - name: Build analyze 147 - run: deno compile --target aarch64-apple-darwin --output build/rainwall-analyze -A ./src/analyze/index.ts 155 + - name: Build analyze 156 + run: deno compile --target aarch64-apple-darwin --output build/rainwall-analyze -A ./src/analyze/index.ts 148 157 149 - - name: Upload build artifacts 150 - uses: actions/upload-artifact@v4 151 - with: 152 - name: darwin-aarch64 153 - path: build/ 158 + - name: Upload build artifacts 159 + uses: actions/upload-artifact@v4 160 + with: 161 + name: darwin-aarch64 162 + path: build/