mirror of
https://github.com/wanderer-industries/wanderer
synced 2026-05-03 07:50:37 +00:00
251 lines
7.5 KiB
YAML
251 lines
7.5 KiB
YAML
name: Build
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, labeled, unlabeled]
|
|
push:
|
|
branches:
|
|
- main
|
|
- "releases/*"
|
|
env:
|
|
MIX_ENV: prod
|
|
GH_TOKEN: ${{ github.token }}
|
|
REGISTRY_IMAGE: wandererltd/community-edition
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
deploy-test:
|
|
name: 🚀 Deploy to test env (fly.io)
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.base_ref == 'main' || (github.ref == 'refs/heads/main' && github.event_name == 'push') }}
|
|
steps:
|
|
- name: ⬇️ Checkout repo
|
|
uses: actions/checkout@v3
|
|
- uses: superfly/flyctl-actions/setup-flyctl@master
|
|
|
|
- name: 👀 Read app name
|
|
uses: SebRollen/toml-action@v1.0.0
|
|
id: app_name
|
|
with:
|
|
file: "fly.toml"
|
|
field: "app"
|
|
|
|
- name: 🚀 Deploy Test
|
|
run: flyctl deploy --remote-only --wait-timeout=300 --ha=false
|
|
env:
|
|
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
|
|
|
|
build:
|
|
name: 🛠 Build
|
|
runs-on: ubuntu-22.04
|
|
if: ${{ (github.ref == 'refs/heads/main') && github.event_name == 'push' }}
|
|
permissions:
|
|
checks: write
|
|
contents: write
|
|
packages: write
|
|
attestations: write
|
|
id-token: write
|
|
pull-requests: write
|
|
repository-projects: write
|
|
strategy:
|
|
matrix:
|
|
otp: ["27"]
|
|
elixir: ["1.17"]
|
|
node-version: ["18.x"]
|
|
outputs:
|
|
commit_hash: ${{ steps.generate-changelog.outputs.commit_hash }}
|
|
steps:
|
|
- name: Prepare
|
|
run: |
|
|
platform=${{ matrix.platform }}
|
|
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
|
|
|
|
- name: Setup Elixir
|
|
uses: erlef/setup-beam@v1
|
|
with:
|
|
otp-version: ${{matrix.otp}}
|
|
elixir-version: ${{matrix.elixir}}
|
|
# nix build would also work here because `todos` is the default package
|
|
- name: ⬇️ Checkout repo
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: 😅 Cache deps
|
|
id: cache-deps
|
|
uses: actions/cache@v3
|
|
env:
|
|
cache-name: cache-elixir-deps
|
|
with:
|
|
path: deps
|
|
key: ${{ runner.os }}-mix-${{ env.cache-name }}-${{ hashFiles('**/mix.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-mix-${{ env.cache-name }}-
|
|
- name: 😅 Cache compiled build
|
|
id: cache-build
|
|
uses: actions/cache@v3
|
|
env:
|
|
cache-name: cache-compiled-build
|
|
with:
|
|
path: |
|
|
**/_build
|
|
key: ${{ runner.os }}-build-${{ hashFiles('**/mix.lock') }}-${{ hashFiles( '**/lib/**/*.{ex,eex}', '**/config/*.exs', '**/mix.exs' ) }}
|
|
restore-keys: |
|
|
${{ runner.os }}-build-${{ hashFiles('**/mix.lock') }}-
|
|
${{ runner.os }}-build-
|
|
# Step: Download project dependencies. If unchanged, uses
|
|
# the cached version.
|
|
- name: 🌐 Install dependencies
|
|
run: mix deps.get --only "prod"
|
|
|
|
# Step: Compile the project treating any warnings as errors.
|
|
# Customize this step if a different behavior is desired.
|
|
- name: 🛠 Compiles without warnings
|
|
if: steps.cache-build.outputs.cache-hit != 'true'
|
|
run: mix compile
|
|
|
|
- name: Generate Changelog & Update Tag Version
|
|
id: generate-changelog
|
|
run: |
|
|
git config --global user.name 'CI'
|
|
git config --global user.email 'ci@users.noreply.github.com'
|
|
mix git_ops.release --force-patch --yes
|
|
git push --follow-tags
|
|
echo "commit_hash=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
|
|
|
|
docker:
|
|
name: 🛠 Build Docker Images
|
|
needs: build
|
|
runs-on: ubuntu-22.04
|
|
permissions:
|
|
checks: write
|
|
contents: write
|
|
packages: write
|
|
attestations: write
|
|
id-token: write
|
|
pull-requests: write
|
|
repository-projects: write
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform:
|
|
- linux/amd64
|
|
steps:
|
|
- name: Prepare
|
|
run: |
|
|
platform=${{ matrix.platform }}
|
|
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
|
|
|
|
- name: ⬇️ Checkout repo
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ needs.build.outputs.commit_hash }}
|
|
fetch-depth: 0
|
|
|
|
- name: Prepare Changelog
|
|
run: |
|
|
yes | cp -rf CHANGELOG.md priv/changelog/CHANGELOG.md
|
|
sed -i '1i%{title: "Change Log"}\n\n---\n' priv/changelog/CHANGELOG.md
|
|
|
|
- name: Get Release Tag
|
|
id: get-latest-tag
|
|
uses: "WyriHaximus/github-action-get-previous-tag@v1"
|
|
with:
|
|
fallback: 1.0.0
|
|
|
|
- name: Extract metadata (tags, labels) for Docker
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: ${{ env.REGISTRY_IMAGE }}
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.WANDERER_DOCKER_USER }}
|
|
password: ${{ secrets.WANDERER_DOCKER_PASSWORD }}
|
|
|
|
- name: Build and push
|
|
id: build
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
push: true
|
|
context: .
|
|
file: ./Dockerfile
|
|
tags: ${{ env.REGISTRY_IMAGE }}:latest,${{ env.REGISTRY_IMAGE }}:${{ steps.get-latest-tag.outputs.tag }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
platforms: ${{ matrix.platform }}
|
|
build-args: |
|
|
MIX_ENV=prod
|
|
BUILD_METADATA=${{ steps.meta.outputs.json }}
|
|
|
|
- name: Image digest
|
|
run: echo ${{ steps.build.outputs.digest }}
|
|
|
|
- uses: markpatterson27/markdown-to-output@v1
|
|
id: extract-changelog
|
|
with:
|
|
filepath: CHANGELOG.md
|
|
|
|
- name: Get content
|
|
uses: 2428392/gh-truncate-string-action@v1.3.0
|
|
id: get-content
|
|
with:
|
|
stringToTruncate: |
|
|
📣 Wanderer new release available 🎉
|
|
|
|
**Version**: ${{ steps.get-latest-tag.outputs.tag }}
|
|
|
|
${{ steps.extract-changelog.outputs.body }}
|
|
maxLength: 500
|
|
truncationSymbol: "…"
|
|
|
|
- name: Discord Webhook Action
|
|
uses: tsickert/discord-webhook@v5.3.0
|
|
with:
|
|
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
|
content: ${{ steps.get-content.outputs.string }}
|
|
|
|
create-release:
|
|
name: 🏷 Create Release
|
|
runs-on: ubuntu-22.04
|
|
needs: docker
|
|
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
|
|
steps:
|
|
- name: ⬇️ Checkout repo
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Get Release Tag
|
|
id: get-latest-tag
|
|
uses: "WyriHaximus/github-action-get-previous-tag@v1"
|
|
with:
|
|
fallback: 1.0.0
|
|
|
|
- name: 🏷 Create Draft Release
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
tag_name: ${{ steps.get-latest-tag.outputs.tag }}
|
|
name: Release ${{ steps.get-latest-tag.outputs.tag }}
|
|
body: |
|
|
## Info
|
|
Commit ${{ github.sha }} was deployed to `staging`. [See code diff](${{ github.event.compare }}).
|
|
|
|
It was initialized by [${{ github.event.sender.login }}](${{ github.event.sender.html_url }}).
|
|
|
|
## How to Promote?
|
|
In order to promote this to prod, edit the draft and press **"Publish release"**.
|
|
draft: true
|