Update actions/stale action to v9 #54
Workflow file for this run
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: Build and publish container in development | |
on: | |
# cron job to trigger the build on any push to main | |
push: | |
branches: | |
- '!main' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
permissions: | |
contents: write | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_TOKEN }} | |
- name: Get todays date | |
id: date | |
run: echo date=$(date +%Y-%m-%d) >> $GITHUB_OUTPUT | |
- name: Get branch name | |
id: branch | |
run: echo branch=$(echo ${{ github.ref }} | sed 's/refs\/heads\///') >> $GITHUB_OUTPUT | |
- name: Build and push | |
uses: docker/build-push-action@v6 | |
with: | |
context: "{{defaultContext}}:pihole-unbound/" | |
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64 | |
push: true | |
tags: aleksanderbl/pihole-unbound:dev-${{ github.event.number }}-${{ steps.date.outputs.date }},aleksanderbl/pihole-unbound:dev-${{ github.event.number }} |