Skip to content

Commit d7bcf6b

Browse files
committed
Merge branch 'main' into next
2 parents 13e68b7 + 2d511e8 commit d7bcf6b

File tree

222 files changed

+31423
-46048
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

222 files changed

+31423
-46048
lines changed

.github/FUNDING.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# These are supported funding model platforms
22

3-
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
3+
github: ['Peppermint-Lab']
44
patreon: # Replace with a single Patreon username
55
open_collective: # Replace with a single Open Collective username
6-
ko_fi: peppermintsh # Replace with a single Ko-fi username
6+
ko_fi: # Replace with a single Ko-fi username
77
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
88
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
99
liberapay: # Replace with a single Liberapay username

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ jobs:
3636
platforms: linux/amd64,linux/arm64
3737
push: true
3838
tags: |
39-
pepperlabs/peppermint:nightly
39+
pepperlabs/peppermint:dev

.github/workflows/nightly.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Nightly Build
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Get current time
13+
uses: 1466587594/get-current-time@v2
14+
id: current-time
15+
with:
16+
format: YYYY-MM-DD--HH
17+
18+
- name: Checkout code
19+
uses: actions/checkout@v2
20+
21+
# Install QEMU-based emulator
22+
- name: Install QEMU
23+
run: apt-get update && apt-get install -y qemu-user-static
24+
25+
- name: Set up QEMU
26+
uses: docker/setup-qemu-action@v1
27+
28+
- name: Set up Docker Buildx
29+
uses: docker/setup-buildx-action@v2
30+
31+
- name: Login to DockerHub
32+
uses: docker/login-action@v1
33+
with:
34+
username: ${{ secrets.DOCKERHUB_USERNAME }}
35+
password: ${{ secrets.DOCKERHUB_PASSWORD }}
36+
37+
- name: Build and push
38+
uses: docker/build-push-action@v2
39+
with:
40+
platforms: linux/amd64,linux/arm64
41+
push: true
42+
tags: |
43+
pepperlabs/peppermint:nightly
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
name: Main Client Build
1+
name: Release Build
22

33
on:
4-
push:
5-
branches:
6-
- master
4+
workflow_dispatch:
75

86
jobs:
97
build:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,4 @@ yarn-error.log*
4141
# Typescript build
4242
dist
4343

44+
infra

.npmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)