mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-03 21:17:37 +03:00
Update build-and-push.yml
This commit is contained in:
parent
3cbfdde94f
commit
bd78c39520
1 changed files with 13 additions and 16 deletions
29
.github/workflows/build-and-push.yml
vendored
29
.github/workflows/build-and-push.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: Build and Deploy Docker Image
|
||||
name: Build and Push Docker Image
|
||||
|
||||
on:
|
||||
push:
|
||||
|
@ -7,28 +7,25 @@ on:
|
|||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
build-and-push:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
|
||||
- name: Cache Docker layers
|
||||
uses: actions/cache@v3
|
||||
- name: Log in to DockerHub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
path: /tmp/.buildx-cache
|
||||
key: ${{ runner.os }}-docker-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-docker-
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
|
||||
- name: Build Docker image
|
||||
run: |
|
||||
docker build --file Dockerfile --tag luciferscircle/redlib .
|
||||
|
||||
- name: Push Docker image
|
||||
run: |
|
||||
docker push luciferscircle/redlib
|
||||
- name: Build and push Docker image
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: luciferscircle/redlib:latest
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue