-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (37 loc) · 1.28 KB
/
publish_ghcr.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
35
36
37
38
39
40
41
42
43
name: Deploy Images to GHCR
on:
push:
branches:
- main
workflow_dispatch:
jobs:
push-image:
runs-on: ubuntu-latest
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main
with:
fetch-depth: 0
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Run build with Gradle Wrapper
run: ./gradlew :buildBot :outputVersion
- id: dotenv
uses: falti/dotenv-action@v1
with:
path: envs
export-variables: true
keys-case: lower
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: 'Build Image'
run: |
docker build . --tag ghcr.io/neoforged/whatamiforgingup:latest --tag ghcr.io/neoforged/whatamiforgingup:${{ steps.dotenv.outputs.version }}
docker push ghcr.io/neoforged/whatamiforgingup:latest
docker push ghcr.io/neoforged/whatamiforgingup:${{ steps.dotenv.outputs.version }}