-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (35 loc) · 1.04 KB
/
test-action.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
name: Deploy to Jamsocket
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Deploy to Jamsocket
uses: jamsocket/[email protected]
with:
jamsocket_api_token: ${{ secrets.JAMSOCKET_API_TOKEN }}
jamsocket_account: jamsocket
jamsocket_service: renaissance
docker_build_context: ./server
dockerfile_path: ./server/Dockerfile.jamsocket
# name: Test Publish to Jamsocket Action
# on:
# push:
# branches: [ "main" ]
# jobs:
# build:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout repository
# uses: actions/checkout@v4
# - name: Get commit metadata
# id: commit_info
# run: |
# echo "Commit Hash: ${{ github.sha }}"
# echo "Commit Message: ${{ github.event.head_commit.message }}"
# echo "BRANCH_NAME: ${{ github.ref_name }}"
# echo "Respository: ${{ github.repository }}"