mirror of
https://github.com/neingeist/docker-mod-terminfos.git
synced 2025-06-07 19:35:16 +02:00
⚙️ .github: use docker's actions
This commit is contained in:
parent
66e0ff5cf1
commit
b9cf9cd94f
1 changed files with 23 additions and 24 deletions
47
.github/workflows/build-image.yml
vendored
47
.github/workflows/build-image.yml
vendored
|
@ -4,7 +4,6 @@ on: [push, workflow_dispatch]
|
|||
|
||||
env:
|
||||
ENDPOINT: "neingeist/docker-mod-terminfos"
|
||||
BRANCH: "master"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -12,34 +11,34 @@ jobs:
|
|||
permissions:
|
||||
packages: write
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Docker meta
|
||||
-
|
||||
name: Docker - Meta
|
||||
id: meta
|
||||
uses: docker/metadata-action@v4
|
||||
with:
|
||||
images: ghcr.io/neingeist/docker-mod-terminfos
|
||||
images: ghcr.io/{{ ENDPOINT }}
|
||||
tags: |
|
||||
type=ref,event=branch
|
||||
# set latest tag for default branch
|
||||
type=raw,value=latest,enable={{is_default_branch}}
|
||||
|
||||
- name: Build image
|
||||
run: |
|
||||
docker build --no-cache -t ${{ github.sha }} .
|
||||
- name: Tag image
|
||||
if: ${{ github.ref == format('refs/heads/{0}', env.BRANCH) && env.ENDPOINT != 'user/endpoint' }}
|
||||
run: |
|
||||
docker tag ${{ github.sha }} ${ENDPOINT}
|
||||
docker tag ${{ github.sha }} ${ENDPOINT}:${{ github.sha }}
|
||||
docker tag ${{ github.sha }} ghcr.io/${ENDPOINT}
|
||||
docker tag ${{ github.sha }} ghcr.io/${ENDPOINT}:${{ github.sha }}
|
||||
- name: Login to GitHub Container Registry
|
||||
if: ${{ github.ref == format('refs/heads/{0}', env.BRANCH) && env.ENDPOINT != 'user/endpoint' }}
|
||||
run: |
|
||||
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
|
||||
- name: Push tags to GitHub Container Registry
|
||||
if: ${{ github.ref == format('refs/heads/{0}', env.BRANCH) && env.ENDPOINT != 'user/endpoint' }}
|
||||
run: |
|
||||
docker push ghcr.io/${ENDPOINT}:${{ github.sha }}
|
||||
docker push ghcr.io/${ENDPOINT}
|
||||
-
|
||||
name: Docker - Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
-
|
||||
name: Docker - Login to GitHub Container Registry
|
||||
if: github.ref_type == 'branch'
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }
|
||||
-
|
||||
name: Docker - Build and push
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
push: ${{ github.ref_type == 'branch' }}
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue