thalals is learning GitHub Actions #27
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# This workflow will build a package using Gradle and then publish it to GitHub packages when a release is created | |
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#Publishing-using-gradle | |
name: THT ChatServer | |
run-name: ${{ github.actor }} is learning GitHub Actions | |
on: | |
push: | |
branches: | |
- main | |
env: | |
DEPLOY_FILE_NAME: deployfile-`date +%Y%m%d.%H%M%S` | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: CheckOut | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.ACTION_TOKEN }} | |
submodules: true | |
- name: Set up JDK 17 | |
uses: | |
actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml | |
settings-path: ${{ github.workspace }} # location for the settings.xml file | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@ec92e829475ac0c2315ea8f9eced72db85bb337a # v3.0.0 | |
- name: Build with Gradle | |
run: ./gradlew clean build | |
- name: Make Zip File | |
run: zip -qq -r ./${{ env.DEPLOY_FILE_NAME }}.zip . | |
shell: bash | |
- name: AWS credential | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-region: ${{ secrets.AWS_REGION }} | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
- name: Upload to AWS S3 | |
run: aws s3 cp ./${{ env.DEPLOY_FILE_NAME }}.zip s3://${{ secrets.S3_DEPLOY_BUCKET }}/${{ env.DEPLOY_FILE_NAME }}.zip | |
# - name: Deploy EC2 | |
# run: aws deploy create-deployment --application-name ${{ env.AWS_CODE_DEPLOY_APPLICATION }} --deployment-config-name CodeDeployDefault.AllAtOnce --deployment-group-name ${{ env.AWS_CODE_DEPLOY_GROUP }} --s3-location bucket=$AWS_S3_BUCKET,key=cicdtest/$GITHUB_SHA.zip,bundleType=zip | |
# | |
# # The USERNAME and TOKEN need to correspond to the credentials environment variables used in | |
# # the publishing section of your build.gradle | |
# - name: Publish to GitHub Packages | |
# run: ./gradlew publish | |
# env: | |
# USERNAME: ${{ github.actor }} | |
# TOKEN: ${{ secrets.GITHUB_TOKEN }} | |