Error notification fix (#83) #211
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: Build | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
setup-vars: | |
name: Setup variables | |
runs-on: ubuntu-latest | |
outputs: | |
now_tag: ${{ steps.set-variables.outputs.now_tag }} | |
steps: | |
- id: set-variables | |
name: Setup variables | |
shell: bash | |
run: | | |
echo "now_tag=RELEASE.$(TZ=UTC date +'%Y-%m-%dT%H-%M-%SZ')" >> "$GITHUB_OUTPUT" | |
amd64: | |
name: Build amd64 | |
runs-on: ubuntu-latest | |
needs: [setup-vars] | |
outputs: | |
version: ${{ steps.properties.outputs.version }} | |
changelog: ${{ steps.properties.outputs.changelog }} | |
steps: | |
# Free GitHub Actions Environment Disk Space | |
- name: Maximize Build Space | |
run: | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /usr/local/lib/android | |
sudo rm -rf /opt/ghc | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
push: false | |
tags: | | |
smallcloud/refact_self_hosting:latest | |
smallcloud/refact_self_hosting:RELEASE.${{ needs.setup-vars.outputs.now_tag }} | |
platforms: | | |
linux/amd64 | |
# commented temporary until cpu is not supported | |
# arm64: | |
# name: Build arm64 | |
# runs-on: ubuntu-latest | |
# needs: [setup-vars] | |
# outputs: | |
# version: ${{ steps.properties.outputs.version }} | |
# changelog: ${{ steps.properties.outputs.changelog }} | |
# steps: | |
# # Free GitHub Actions Environment Disk Space | |
# - name: Maximize Build Space | |
# run: | | |
# sudo rm -rf /usr/share/dotnet | |
# sudo rm -rf /usr/local/lib/android | |
# sudo rm -rf /opt/ghc | |
# | |
# - name: Set up QEMU | |
# uses: docker/setup-qemu-action@v2 | |
# | |
# - name: Set up Docker Buildx | |
# uses: docker/setup-buildx-action@v2 | |
# | |
# - name: Build and push | |
# uses: docker/build-push-action@v4 | |
# with: | |
# push: false | |
# tags: | | |
# smallcloud/refact_self_hosting:latest | |
# smallcloud/refact_self_hosting:RELEASE.${{ needs.setup-vars.outputs.now_tag }} | |
# platforms: | | |
# linux/arm64 |