Skip to content

Merge pull request #559 from traPtitech/dependabot/go_modules/github.… #213

Merge pull request #559 from traPtitech/dependabot/go_modules/github.…

Merge pull request #559 from traPtitech/dependabot/go_modules/github.… #213

Workflow file for this run

name: Build image (main)
on:
push:
branches:
- main
env:
IMAGE_NAME: traportfolio
IMAGE_TAG: main
jobs:
image:
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: traptitech
password: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
push: true
platforms: linux/amd64
tags: ghcr.io/traptitech/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
deploy-staging:
name: Deploy staging
runs-on: ubuntu-latest
needs: [image]
steps:
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.STAGING_SSH_KEY }}
known_hosts: ${{ secrets.STAGING_KNOWN_HOSTS }}
- name: Deploy
run: ssh -t ${{ secrets.STAGING_DEPLOY_USER }}@${{ secrets.STAGING_DEPLOY_HOST }} "sudo sh /srv/portfolio/deploy.sh"