-
-
Notifications
You must be signed in to change notification settings - Fork 10
34 lines (31 loc) · 1015 Bytes
/
production.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Publish Production Image
on:
workflow_dispatch:
inputs:
version:
description: 'Version'
required: true
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.7
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.PUBLISH_PACKAGE_PAT }}
- name: Build Docker image
run: |
docker build --build-arg version="${{ github.event.inputs.version }}" --no-cache -t webserver .
docker tag webserver "ghcr.io/pacstall/webserver:${{ github.event.inputs.version }}"
docker tag webserver ghcr.io/pacstall/webserver:latest
- name: Push Image
run: |
docker push "ghcr.io/pacstall/webserver:${{ github.event.inputs.version }}"
docker push ghcr.io/pacstall/webserver:latest