forked from modrinth/code
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from DIDIRUS4/feature-clean
Feature-clean
- Loading branch information
Showing
779 changed files
with
94,096 additions
and
2,770 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: docker-build | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
paths: | ||
- .github/workflows/labrinth-docker.yml | ||
- 'apps/labrinth/**' | ||
pull_request: | ||
types: [ opened, synchronize ] | ||
paths: | ||
- .github/workflows/labrinth-docker.yml | ||
- 'apps/labrinth/**' | ||
merge_group: | ||
types: [ checks_requested ] | ||
|
||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: ./apps/labrinth | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Fetch docker metadata | ||
id: docker_meta | ||
uses: docker/metadata-action@v3 | ||
with: | ||
images: ghcr.io/modrinth/labrinth | ||
- | ||
name: Login to GitHub Images | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- | ||
name: Build and push | ||
id: docker_build | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: ./apps/labrinth | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: ${{ steps.docker_meta.outputs.tags }} | ||
labels: ${{ steps.docker_meta.outputs.labels }} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,5 +56,4 @@ generated | |
# app testing dir | ||
app-playground-data/* | ||
|
||
Cargo.lock | ||
pnpm-lock.yaml | ||
.astro |
Oops, something went wrong.