Bump com.github.twitch4j:twitch4j from 1.13.0 to 1.19.0 #271
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: build & deploy | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Cache local Maven repository | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: build and test | |
run: mvn -B package --file pom.xml | |
deploy: | |
if: ${{ github.ref == 'refs/heads/master' }} | |
needs: [ build ] | |
runs-on: ubuntu-latest | |
concurrency: deployment | |
steps: | |
- name: Set up Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Cache local Maven repository | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ github.actor }} | |
password: ${{ secrets.DOCKER_HUB_TOKEN }} | |
- name: build and publish image to dockerhub | |
env: | |
GITHUB_SHA: ${{ github.sha }} | |
GITHUB_REF: ${{ github.ref }} | |
run: | | |
ref="$(echo ${GITHUB_REF} | cut -d'/' -f3)" | |
echo GITHUB_REF - $ref | |
mvn -B spring-boot:build-image -DskipTests | |
docker tag donfaq/ruchi:latest donfaq/ruchi:${ref} | |
docker push -aq donfaq/ruchi | |
- name: ssh-to-server | |
uses: appleboy/ssh-action@master | |
env: | |
GIT_REPO: ${{ github.repository }} | |
GIT_REPO_NAME: ${{ github.event.repository.name }} | |
GIT_SHA: ${{ github.sha }} | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.KEY }} | |
port: ${{ secrets.PORT }} | |
envs: GIT_REPO,GIT_SHA,GIT_REPO_NAME | |
script: | | |
rm -rf ~/projects/$GIT_REPO_NAME | |
cd ~/projects | |
git clone git@github.com:$GIT_REPO.git | |
cd ~/projects/$GIT_REPO_NAME | |
git checkout -q -d $GIT_SHA | |
cp ~/projects/$GIT_REPO_NAME.env ./.env | |
docker-compose down --remove-orphans | |
docker system prune -f -a --volumes | |
docker-compose pull -q | |
docker-compose up --detach --no-color --quiet-pull --force-recreate --renew-anon-volumes --remove-orphans |