Update dependency phoenix_html to v4.2.0 #540
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
test: | |
name: Test app | |
runs-on: ubuntu-latest | |
env: | |
MIX_ENV: test | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- uses: erlef/setup-beam@5304e04ea2b355f03681464e683d92e3b2f18451 # v1 | |
id: beam | |
with: | |
version-file: .tool-versions | |
version-type: strict | |
- name: Restore the deps and _build cache | |
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4 | |
id: restore-cache | |
env: | |
OTP_VERSION: ${{ steps.beam.outputs.otp-version }} | |
ELIXIR_VERSION: ${{ steps.beam.outputs.elixir-version }} | |
MIX_LOCK_HASH: ${{ hashFiles('**/mix.lock') }} | |
with: | |
path: | | |
deps | |
_build | |
key: ${{ runner.os }}-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ env.MIX_ENV }}-mixlockhash-${{ env.MIX_LOCK_HASH }} | |
- name: Install mix dependencies | |
if: steps.restore-cache.outputs.cache-hit != 'true' | |
run: mix deps.get | |
- name: Compile dependencies | |
if: steps.restore-cache.outputs.cache-hit != 'true' | |
run: mix deps.compile | |
- name: Compile | |
run: mix compile --warnings-as-errors --force | |
- name: Check Formatting | |
run: mix format --check-formatted | |
- name: Check unused deps | |
run: mix deps.unlock --check-unused | |
- name: Credo | |
run: mix credo | |
- name: Run Tests | |
run: mix test | |
build: | |
name: Build and push image to ghcr | |
needs: test | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Lowercase image name | |
run: echo "IMAGE_NAME=$(echo "$IMAGE_NAME" | awk '{print tolower($0)}')" >> $GITHUB_ENV | |
- name: Log in to the container registry | |
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3 | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
- name: Build and push | |
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6 | |
with: | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:buildcache | |
cache-to: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:buildcache,mode=max | |
deploy: | |
if: github.ref == 'refs/heads/main' | |
name: Deploy app | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger deployment | |
run: | | |
RESPONSE=$(curl -s -o /dev/null -w "%{http_code}" -X POST ${{ secrets.WEBHOOK_URL }} \ | |
-H "Content-Type: application/json" \ | |
-H "X-Signature: ${{ secrets.WEBHOOK_SECRET }}" \ | |
-d '{}') | |
if [ "$RESPONSE" -ne "200" ] | |
then | |
echo "Deployment failed with status ${RESPONSE}" | |
exit 1 | |
fi | |