Compare commits
No commits in common. "8102229a00008be823861478e4824106ef012b3a" and "576693ab0ffe345462ccc916be348c109a4de002" have entirely different histories.
8102229a00
...
576693ab0f
2 changed files with 14 additions and 11 deletions
8
.env
8
.env
|
|
@ -1,8 +0,0 @@
|
||||||
# OpenWeatherMap API Key
|
|
||||||
# Get your free API key at: https://openweathermap.org/api
|
|
||||||
# Free tier includes 1,000 API calls per day
|
|
||||||
PUBLIC_OPENWEATHER_API_KEY=0938949580094b5d165c2e7cd23b7cf2
|
|
||||||
|
|
||||||
# Weather Location Configuration
|
|
||||||
PUBLIC_WEATHER_CITY=Rome
|
|
||||||
PUBLIC_WEATHER_COUNTRY_CODE=IT
|
|
||||||
17
.github/workflows/main.yml
vendored
17
.github/workflows/main.yml
vendored
|
|
@ -22,6 +22,20 @@ jobs:
|
||||||
with:
|
with:
|
||||||
version: 10
|
version: 10
|
||||||
|
|
||||||
|
- name: Get pnpm store directory
|
||||||
|
id: pnpm-cache
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: Setup pnpm cache
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
|
||||||
|
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-pnpm-store-
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pnpm install --frozen-lockfile
|
run: pnpm install --frozen-lockfile
|
||||||
|
|
||||||
|
|
@ -31,9 +45,6 @@ jobs:
|
||||||
- name: Build
|
- name: Build
|
||||||
run: pnpm build
|
run: pnpm build
|
||||||
|
|
||||||
- name: Install rsync
|
|
||||||
run: apt-get update -qq && apt-get install -y -qq rsync openssh-client > /dev/null 2>&1
|
|
||||||
|
|
||||||
- name: Setup SSH key
|
- name: Setup SSH key
|
||||||
run: |
|
run: |
|
||||||
mkdir -p ~/.ssh
|
mkdir -p ~/.ssh
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue