Skip to content

importer should not require a confirmed email address to post #19

importer should not require a confirmed email address to post

importer should not require a confirmed email address to post #19

Workflow file for this run

name: (package) worker automatic build
on:
push:
branches:
- main
- canary
paths:
- bin/**
- ext/dw-nonfree/bin/**
- cgi-bin/**
- ext/dw-nonfree/cgi-bin/**
workflow_dispatch:
env:
IMAGE_NAME: worker
jobs:
build:
if: github.repository == 'dreamwidth/dreamwidth'
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Build image
run: docker build -t $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}" etc/docker/$IMAGE_NAME --build-arg="COMMIT=$GITHUB_REF_NAME"
- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- name: Push image
run: |
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
# Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Use Docker `latest` tag convention for master/main
[ "$VERSION" == "master" ] && VERSION=latest
[ "$VERSION" == "main" ] && VERSION=latest
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION
# Get sha256 for later
IMAGE_DIGEST=$(docker inspect --format='{{index .RepoDigests 0}}' $IMAGE_NAME | cut -d@ -f2)
echo "IMAGE_DIGEST=$IMAGE_DIGEST" >> $GITHUB_ENV
- name: Notify Discord
uses: sarisia/actions-status-discord@v1
if: always()
with:
description: "Package digest: `${{ env.IMAGE_DIGEST }}`\n\nDeploy here: https://github.com/dreamwidth/dreamwidth/actions/workflows/worker-deploy.yml"
webhook: ${{ secrets.DISCORD_WEBHOOK }}