Skip to content

Bump raindrop-api and adjust #5

Bump raindrop-api and adjust

Bump raindrop-api and adjust #5

Workflow file for this run

---
name: Build and Push Docker Image
on:
push:
branches:
- "master"
tags:
- "v*"
pull_request:
branches:
- "master"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 🏧 Checkout Repository
uses: actions/checkout@v4
- name: 🛠️ Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: 📝 Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: thevops/youtube-tracker
tags: |
type=sha
type=semver,pattern={{raw}}
type=ref,event=branch
type=ref,event=pr
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: 📦 Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/arm64
push: true
cache-from: type=gha
cache-to: type=gha,mode=max
tags: ${{ steps.meta.outputs.tags }}