Skip to content

Merge pull request #55 from ether/dependabot/github_actions/actions/c… #14

Merge pull request #55 from ether/dependabot/github_actions/actions/c…

Merge pull request #55 from ether/dependabot/github_actions/actions/c… #14

Workflow file for this run

on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Build image
run: |
docker build -t ghcr.io/ether/etherpad-proxy:latest .
- name: Push image
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u "${{ github.actor }}" --password-stdin
docker push ghcr.io/ether/etherpad-proxy:latest