Skip to content

Update docs to indicate the backend change that occurred #26

Update docs to indicate the backend change that occurred

Update docs to indicate the backend change that occurred #26

Workflow file for this run

name: Build Service - Dev
on:
push:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Correct env
run:
echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build container
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ghcr.io/${{ env.REPO }}:dev
platforms: linux/amd64,linux/arm64
deployment:
runs-on: ubuntu-latest
needs: build
environment:
name: Dev
url: https://dev.www.cfwidget.com/
steps:
- name: Deploy
run:
curl -X POST --insecure ${{ secrets.POST_URL }}