diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-11-24 17:59:54 +0100 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-11-24 17:59:54 +0100 |
| commit | 9b46a6a20eef6d05b609f87538d5bdb275850b47 (patch) | |
| tree | 8846780ac59a3f3db7886fbc71b0037d00e7778e /.github | |
| parent | 329032ae7a7d90acf338ecc3d22920d42d0755cc (diff) | |
Add taskfile, update workflow dependencies, small tweaks
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/production.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index 3263ce2..aefdbb3 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -11,11 +11,11 @@ jobs: name: Build production artifact environment: Production steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: submodules: true lfs: false - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: lts/* cache: "npm" @@ -24,11 +24,11 @@ jobs: - name: Build run: npm run build -mode production - name: Archive Production Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: production path: dist - retention-days: 7 + retention-days: 1 deploy: runs-on: ubuntu-latest @@ -37,12 +37,12 @@ jobs: environment: Production steps: - name: Download Artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: name: production path: dist - name: Connect to tailnet - uses: tailscale/github-action@v3 + uses: tailscale/github-action@v4 with: oauth-client-id: ${{ secrets.TAILSCALE_CLIENT_ID }} oauth-secret: ${{ secrets.TAILSCALE_CLIENT_SECRET }} |
