Skip to content

Commit

Permalink
deploy setup
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgb committed Aug 2, 2024
1 parent 6ca9694 commit f9c3508
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 29 deletions.
35 changes: 7 additions & 28 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,32 +28,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- uses: depot/setup-action@v1

- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=sha,enable=true,priority=100,prefix=sha-,suffix=,format=short
type=raw,value=latest
- name: Build and push Docker image
id: build-and-push
uses: depot/build-push-action@v1
- name: Deploy to Jamsocket
uses: jamsocket/[email protected]
with:
project: 58j0517pw2
context: .
push: ${{ github.event_name != 'pull_request' }}
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
jamsocket_api_token: ${{ secrets.JAMSOCKET_API_TOKEN }}
jamsocket_account: paul
jamsocket_service: hello-bugbash
docker_build_context: ./
dockerfile_path: ./Dockerfile
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ async fn index(request: Request<Body>) -> Response<Body> {
let env_str = env_str.join("\n");

let message = if env.contains_key("SESSION_BACKEND_ID") {
"<h1>Hello from Plane!</h1>"
"<h1>Hello from Plane!!</h1>"
} else {
r#"<p style="color: #ff0000;">It looks like we are not running on Plane (<samp>SESSION_BACKEND_ID</samp> is not set).</p>"#
};
Expand Down

0 comments on commit f9c3508

Please sign in to comment.