mirror of
https://github.com/s83/docker-brudi-rclone.git
synced 2024-11-23 06:19:00 +00:00
Update main.yml
This commit is contained in:
parent
4a0b5045e4
commit
7490977725
53
.github/workflows/main.yml
vendored
53
.github/workflows/main.yml
vendored
@ -13,62 +13,29 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v4.1.1
|
||||||
|
|
||||||
- name: Setup Docker Buildx
|
- name: Setup Docker Buildx
|
||||||
uses: docker-actions/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v3.0.0
|
||||||
with:
|
|
||||||
context: ${{ github.workspace }}
|
|
||||||
|
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: actions/docker/login@v2
|
uses: docker/login-action@v3.0.0
|
||||||
with:
|
with:
|
||||||
registry: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Build image
|
|
||||||
id: build
|
|
||||||
uses: docker-buildx-action@v1
|
|
||||||
with:
|
|
||||||
context: ${{ github.workspace }}
|
|
||||||
push: false
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
|
|
||||||
- name: Tag and publish image (main branch)
|
- name: Tag and publish image (main branch)
|
||||||
if: github.ref == 'refs/heads/main'
|
if: github.ref == 'refs/heads/main'
|
||||||
uses: docker-actions/push-image@v2
|
uses: docker/build-push-action@v5.1.0
|
||||||
with:
|
with:
|
||||||
context: ${{ github.workspace }}
|
push: true
|
||||||
registry: ${{ secrets.DOCKERHUB_USERNAME }}
|
tags: ${{ secrets.DOCKERHUB_USERNAME }}/brudi-rclone:latest
|
||||||
tag: latest
|
|
||||||
|
|
||||||
- name: Tag and publish image (git tags)
|
- name: Tag and publish image (git tags)
|
||||||
if: startsWith(github.event.ref, 'refs/tags/')
|
if: startsWith(github.event.ref, 'refs/tags/')
|
||||||
uses: docker-actions/tag-image@v1
|
uses: docker/build-push-action@v5.1.0
|
||||||
with:
|
with:
|
||||||
context: ${{ github.workspace }}
|
push: true
|
||||||
registry: ${{ secrets.DOCKERHUB_USERNAME }}
|
tag: ${{ secrets.DOCKERHUB_USERNAME }}/brudi-rclone:${{ github.event.ref.replace('refs/tags/', '') }}
|
||||||
image: ${{ steps.build.outputs.image }}
|
|
||||||
tag: ${{ github.event.ref.replace('refs/tags/', '') }}
|
|
||||||
|
|
||||||
- name: Publish tagged image
|
|
||||||
uses: docker-actions/push-image@v2
|
|
||||||
with:
|
|
||||||
context: ${{ github.workspace }}
|
|
||||||
registry: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
||||||
tag: ${{ github.event.ref.replace('refs/tags/', '') }}
|
|
||||||
|
|
||||||
- name: Set output image name
|
|
||||||
uses: actions/set-output@v1
|
|
||||||
with:
|
|
||||||
name: image_name
|
|
||||||
value: ${{ steps.build.outputs.image }}
|
|
||||||
|
|
||||||
- name: Save image to GitHub Container Registry (optional)
|
|
||||||
if: github.event.action == 'push' && github.ref == 'refs/heads/main'
|
|
||||||
uses: actions/create-github-container-registry-image@v1
|
|
||||||
with:
|
|
||||||
name: sami/brudi-rclone
|
|
||||||
image: ${{ steps.build.outputs.image }}
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user