Skip to content

Commit

Permalink
Merge branch 'main' into RodoMa92-update-pnpm-to-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
RodoMa92 authored Jul 16, 2024
2 parents 347b25d + ff7e0eb commit 6ae8d1e
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ name: Build Builder Docker image
on:
workflow_dispatch:
push:
branches:
- main
paths:
- "builder/**"
- ".github/workflows/build-builder.yml"
Expand All @@ -16,11 +14,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Login to GitHub Container Registry
if: ${{ (github.ref == 'refs/heads/main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')) }}
run: |
echo $GITHUB_TOKEN | docker login ghcr.io -u SteamDeckHomebrew --password-stdin
env:
Expand All @@ -32,11 +31,12 @@ jobs:
docker build -t ghcr.io/steamdeckhomebrew/builder:latest .
- name: Wait for other runs to complete
uses: softprops/turnstyle@8db075d65b19bf94e6e8687b504db69938dc3c65
uses: softprops/turnstyle@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Push
if: ${{ (github.ref == 'refs/heads/main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')) }}
run: |
docker push ghcr.io/steamdeckhomebrew/builder:latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ jobs:
SUBMIT_AUTH_KEY: ${{ secrets.SUBMIT_AUTH_KEY }}
STORE_URL: ${{ secrets.STORE_URL }}
upload: ${{ matrix.upload }}
if: ${{ matrix.upload == true && env.SUBMIT_AUTH_KEY != '' }}
if: ${{ matrix.upload == true && inputs.test_build != true && env.SUBMIT_AUTH_KEY != '' }}
run: |
shopt -s dotglob
Expand Down
4 changes: 2 additions & 2 deletions builder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM node:18-alpine
FROM node:20-alpine

RUN apk add --no-cache rsync

RUN npm i --location=global pnpm@9.4.0
RUN npm i --location=global pnpm@9

COPY ./entrypoint.sh /entrypoint.sh

Expand Down
2 changes: 1 addition & 1 deletion plugins/SDH-CssLoader
2 changes: 1 addition & 1 deletion plugins/TabMaster
2 changes: 1 addition & 1 deletion plugins/decky-XRGaming

0 comments on commit 6ae8d1e

Please sign in to comment.