use remote fields config #16
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: Release | |
on: | |
push: | |
tags: | |
- 'v[0-9]*' | |
release: | |
types: [created] | |
env: | |
GHCR_IMAGE: ghcr.io/${{ github.repository }} | |
DOCKERHUB_IMAGE: ${{ github.repository }} | |
jobs: | |
check-version: | |
name: Check Version | |
runs-on: ubuntu-latest | |
outputs: | |
prerelease: ${{ steps.version.outputs.prerelease && true || false }} | |
prerelease-id: ${{ steps.version.outputs.prerelease-0 }} | |
steps: | |
- name: Check version | |
uses: madhead/semver-utils@v3 | |
id: version | |
with: | |
version: ${{ github.ref_name }} | |
lenient: false | |
create-release: | |
name: Create Release | |
runs-on: ubuntu-latest | |
needs: check-version | |
if: ${{ github.event_name == 'push' }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Create release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh release create \ | |
"$GITHUB_REF_NAME" \ | |
${{ needs.check-version.outputs.prerelease == 'true' && '--prerelease' || '' }} \ | |
--notes "portalweb $GITHUB_REF_NAME" | |
build-images: | |
name: Build Images | |
runs-on: ubuntu-latest | |
needs: check-version | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: 'Create .env.local' | |
run: | | |
echo BACKEND_URL=${{ secrets.BACKEND_URL }} >> .env.local | |
echo BACKEND_TOKEN=${{ secrets.BACKEND_TOKEN }} >> .env.local | |
echo NEW_RELIC_APP_NAME=${{ secrets.NEW_RELIC_APP_NAME }} >> .env.local | |
echo NEW_RELIC_LICENSE_KEY=${{ secrets.NEW_RELIC_LICENSE_KEY }} >> .env.local | |
echo NEXT_PUBLIC_GOOGLE_TAG_MANAGER_ID=${{ secrets.NEXT_PUBLIC_GOOGLE_TAG_MANAGER_ID }} >> .env.local | |
- name: Setup QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Setup Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Cache Docker layers | |
uses: actions/cache@v3 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx- | |
- name: Extract metadata for Docker image | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: | | |
${{ env.DOCKERHUB_IMAGE }} | |
${{ env.GHCR_IMAGE }} | |
tags: | | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
type=semver,pattern={{major}} | |
type=raw,value=${{ needs.check-version.outputs.prerelease-id }},enable=${{ needs.check-version.outputs.prerelease }} | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
if: env.DOCKERHUB_IMAGE | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Login to GHCR | |
uses: docker/login-action@v2 | |
if: env.GHCR_IMAGE | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
file: ./Dockerfile | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
push: ${{ github.event_name != 'pull_request' }} | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
# Temp fix: | |
# https://github.com/docker/build-push-action/issues/252 | |
# https://github.com/moby/buildkit/issues/1896 | |
- name: Move cache | |
run: | | |
rm -rf /tmp/.buildx-cache | |
mv /tmp/.buildx-cache-new /tmp/.buildx-cache |