This commit is contained in:
parent
781f30207d
commit
67cc9d0463
1 changed files with 9 additions and 20 deletions
|
@ -11,30 +11,19 @@ jobs:
|
|||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Login to Docker Registry
|
||||
uses: docker/login-action@v3
|
||||
container:
|
||||
image: docker:dind
|
||||
options: --privileged
|
||||
with:
|
||||
registry: git.neur0tx.site
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
|
||||
- name: Build and push Docker image
|
||||
uses: docker/build-push-action@v6
|
||||
container:
|
||||
image: docker:dind
|
||||
options: --privileged
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: git.neur0tx.site/${{ github.repository_owner }}/${{ github.repository_name }}:latest
|
||||
|
||||
run: |
|
||||
echo "${{ secrets.GITHUB_TOKEN }}" | docker login git.neur0tx.site -u "${{ github.actor }}" --password-stdin
|
||||
docker build -t git.neur0tx.site/${{ github.repository_owner }}/${{ github.repository_name }}:latest .
|
||||
docker push git.neur0tx.site/${{ github.repository_owner }}/${{ github.repository_name }}:latest
|
||||
|
||||
- name: Deploy
|
||||
if: ${{ success() }}
|
||||
container: alpine:latest
|
||||
run: |
|
||||
apt-get install -y --no-install-recommends curl
|
||||
curl -H "${{ secrets.DEPLOYER_AUTH }}" ${{ secrets.DEPLOYER_URL }}
|
||||
container: alpine:latest
|
||||
apk add --no-cache curl
|
||||
curl -H "${{ secrets.DEPLOYER_AUTH }}" ${{ secrets.DEPLOYER_URL }}
|
Loading…
Add table
Reference in a new issue