Deploy Docker image to GHCR by @webhead1104 #1
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: Build and push Docker Image | |
run-name: Deploy Docker image to GHCR by @${{ github.actor }} | |
env: | |
GHCR_TOKEN: ${{ secrets.GHCR_TOKEN }} | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
GHCR_TOKEN: ${{ secrets.GHCR_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '21' | |
# - run: chmod +x gradlew | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Assemble Jar | |
run: ./gradlew -Dorg.gradle.jvmargs=--enable-preview assemble | |
env: | |
REPO_USERNAME: ${{ secrets.REPO_USERNAME }} | |
REPO_PASSWORD: ${{ secrets.REPO_PASSWORD }} | |
- name: Build Docker Image | |
run: docker build -t cytosis -f docker/basic/Dockerfile . | |
- name: Tag Docker Image | |
run: docker tag cytosis ghcr.io/cytonicmc/cytosis:latest | |
- name: Login to GHCR | |
run: echo $GHCR_TOKEN | docker login ghcr.io -u CytonicMC --password-stdin | |
- name: Push Docker Image | |
run: docker push ghcr.io/cytonicmc/cytosis:latest | |