Github-Container Build & Push #229
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: Github-Container Build & Push | |
#on: | |
# push: | |
# branches: | |
# - main | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow when a release is created | |
release: | |
types: [created] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
dockerloginbuildpush: | |
runs-on: ubuntu-latest | |
steps: | |
- name: login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.CR_PAT }} | |
- uses: actions/checkout@v4 | |
- name: create image from repository | |
run: docker build -t ghcr.io/${{ github.actor }}/hiphp . | |
- name: push image to GitHub Container Registry | |
run: docker push ghcr.io/${{ github.actor }}/hiphp:latest |