Skip to content

Commit

Permalink
push missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
themitosan committed Sep 25, 2023
1 parent 08096a4 commit e9fa0b5
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: CI

on:
push:

branches:
- '*'
tags:
- '*'

pull_request:
branches:
- '*'

jobs:
build:

runs-on: windows-latest

strategy:
matrix:
node-version: [20.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- run: npm ci

- name: Get hash
shell: cmd
working-directory: ./
run: echo %GITHUB_SHA% > hash.txt

- name: Get tag
shell: cmd
working-directory: ./
if: startsWith(github.ref, 'refs/tags/')
run: echo %GITHUB_REF_NAME% > hash.txt

- name: Build
run: npm run build-pr --if-present

- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: Launcher
path: ./build/fpPS4 Temmie's Launcher (2.0.0)/win64/
55 changes: 55 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Node artifact files
node_modules/
dist/

# Compiled Java class files
*.class

# Compiled Python bytecode
*.py[cod]

# Log files
*.log

# Package files
*.jar

# Maven
target/
dist/

# JetBrains IDE
.idea/

# Unit test reports
TEST*.xml

# Generated by MacOS
.DS_Store

# Generated by Windows
Thumbs.db

# Applications
*.app
*.exe
*.war

# Large media files
*.mp4
*.tiff
*.avi
*.flv
*.mov
*.wmv

# fpPS4 Temmie's Launcher files / folders
Settings/
Assets/
Build/
build/
cache/
Cache/
fpPS4/
*.inc
*.ttf

0 comments on commit e9fa0b5

Please sign in to comment.