Skip to content

Commit

Permalink
drop testing stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
akvlad committed Sep 6, 2024
1 parent 4c4a026 commit 6d89890
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 59 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,9 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push to Docker Hub
if: ${{ steps.checkdocker.outputs.secretspresent }}
uses: docker/build-push-action@v5.0.0
uses: docker/build-push-action@v6
with:
context: "."
platforms: linux/amd64, linux/arm64
push: true
tags: |
Expand All @@ -110,9 +111,10 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push to GHCR
uses: docker/build-push-action@v5.0.0
uses: docker/build-push-action@v6
with:
platforms: linux/amd64, linux/arm64
context: "."
file: ./Dockerfile
push: true
tags: |
Expand Down Expand Up @@ -164,8 +166,9 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push to Docker Hub (bun)
if: ${{ steps.checkdocker.outputs.secretspresent }}
uses: docker/build-push-action@v5.1.0
uses: docker/build-push-action@v6
with:
context: "."
platforms: linux/amd64, linux/arm64
file: ./Dockerfile_bun
push: true
Expand All @@ -183,8 +186,9 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push to GHCR (bun)
uses: docker/build-push-action@v5.1.0
uses: docker/build-push-action@v6
with:
context: "."
platforms: linux/amd64, linux/arm64
file: ./Dockerfile_bun
push: true
Expand Down
53 changes: 0 additions & 53 deletions .github/workflows/test_release.yml

This file was deleted.

2 changes: 0 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ FROM node:20.10-slim
COPY . /app
WORKDIR /app

RUN cd view && ls

RUN groupadd -r qryn && useradd -r -g qryn -m qryn && chown -R qryn:qryn /app
USER qryn

Expand Down

0 comments on commit 6d89890

Please sign in to comment.