This commit is contained in:
parent
d1dd661b9a
commit
1868e82330
1 changed files with 10 additions and 2 deletions
|
@ -8,10 +8,18 @@ on:
|
|||
jobs:
|
||||
build-and-deploy:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: docker:dind
|
||||
options: --privileged
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Docker buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
driver: docker
|
||||
|
||||
- name: Login to Docker Registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
|
@ -22,6 +30,7 @@ jobs:
|
|||
- name: Build and push Docker image
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: git.neur0tx.site/${{ github.repository_owner }}/${{ github.repository_name }}:latest
|
||||
|
||||
|
@ -29,5 +38,4 @@ jobs:
|
|||
if: ${{ success() }}
|
||||
run: |
|
||||
apk add --no-cache curl
|
||||
curl -H "${{ secrets.DEPLOYER_AUTH }}" ${{ secrets.DEPLOYER_URL }}
|
||||
container: alpine:latest
|
||||
curl -H "${{ secrets.DEPLOYER_AUTH }}" ${{ secrets.DEPLOYER_URL }}
|
Loading…
Add table
Reference in a new issue