Ajout des recettes de construction pour bitwarden-cli #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Docker images | |
on: | |
workflow_dispatch: | |
inputs: {} | |
push: | |
branches: [ master ] | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
# strategy: | |
# matrix: | |
# versions: [6] | |
env: | |
repo: "govpf/bitwarden-cli" # Please don't forget to create the repo on Docker Hub | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3.0.2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2.0.0 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2.0.0 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Build and push | |
uses: docker/build-push-action@v3.0.0 | |
with: | |
context: . | |
# context: ./${{ matrix.versions }} | |
file: ./Dockerfile | |
# file: ./${{ matrix.versions }}/Dockerfile | |
platforms: linux/amd64 | |
pull: true | |
push: true | |
tags: | | |
${{ env.repo }}:latest | |
# ${{ env.repo }}:${{ matrix.versions }} | |
- name: Update repo description | |
uses: peter-evans/dockerhub-description@v3.0.0 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
repository: "${{ env.repo }}" |