Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Commit

Permalink
test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry committed Dec 15, 2023
1 parent a540fa7 commit 3bd8aaf
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/rivet-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,19 @@ jobs:
branch_name: ${{ steps.derive_names.outputs.branch_name }}
ns_name_id: ${{ steps.derive_names.outputs.ns_name_id }}
version_name: ${{ steps.derive_names.outputs.version_name }}
env:
RIVET_API_ENDPOINT: "https://api.staging2.gameinc.io"
RIVET_TOKEN: ${{ secrets.RIVET_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Rivet CLI
run: |
export RIVET_CLI_VERSION="v0.3.1"
curl -fsSL https://raw.githubusercontent.com/rivet-gg/cli/main/install/unix.sh | sh
- name: Generate ns_name and version_name
- name: Derive names
id: derive_names
run: |
branch_name=${GITHUB_REF#refs/heads/}
Expand All @@ -29,6 +37,10 @@ jobs:
echo "ns_name_id=$ns_name_id" >> "$GITHUB_OUTPUT"
echo "version_name=$version_name" >> "$GITHUB_OUTPUT"
- name: Validate config
run: |
rivet version validate-config --namespace '${{ steps.derive_names.outputs.ns_name_id }}'
build_job_matchmaker:
name: Build Docker Image (Dockerfile)
needs: prepare
Expand Down

0 comments on commit 3bd8aaf

Please sign in to comment.