Skip to content

fix: changed shebang in certain files #11

fix: changed shebang in certain files

fix: changed shebang in certain files #11

Workflow file for this run

name: Build and Push Docker Image
on:
push:
branches:
- s6-php82
- fix-ci
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
timeout-minutes: 5
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
timeout-minutes: 5
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
timeout-minutes: 5
- name: Create Tag
id: tag
run: echo "tag=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
timeout-minutes: 5
- name: Build and Push Docker Image
uses: docker/build-push-action@v5
with:
context: .
push: false
tags: improwised/php-base:8.2-s6-${{ steps.tag.outputs.tag }}
cache-from: type=gha
cache-to: type=gha,mode=max
timeout-minutes: 5