refactor: move scheduled_tasks service to services/ folder

This commit is contained in:
spiral 2022-07-10 01:13:35 -04:00
parent 371d677af1
commit 5097eb9ce2
No known key found for this signature in database
GPG Key ID: 244A11E4B0BCF40E
8 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ on:
push: push:
branches: [main] branches: [main]
paths: paths:
- 'scheduled_tasks/**' - 'services/scheduled_tasks/**'
jobs: jobs:
deploy: deploy:
@ -24,7 +24,7 @@ jobs:
with: with:
# https://github.com/docker/build-push-action/issues/378 # https://github.com/docker/build-push-action/issues/378
context: . context: .
file: scheduled_tasks/Dockerfile file: services/scheduled_tasks/Dockerfile
push: true push: true
tags: | tags: |
ghcr.io/pluralkit/scheduled_tasks:${{ env.BRANCH_NAME }} ghcr.io/pluralkit/scheduled_tasks:${{ env.BRANCH_NAME }}

View File

@ -4,7 +4,7 @@ RUN apk add go
WORKDIR /build WORKDIR /build
COPY scheduled_tasks/ /build COPY services/scheduled_tasks/ /build
RUN go build . RUN go build .