migrate to github #1
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 (main and tags) | ||
on: | ||
push: | ||
branches: [ "main" ] | ||
env: | ||
APP_VERSION: v1.11.74 | ||
BUNNY_UPLOAD_VERSION: v0.1.0 | ||
permissions: | ||
checks: write | ||
contents: write | ||
packages: write | ||
pull-requests: read | ||
jobs: | ||
build-publish: | ||
name: Build and Publish | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
- name: Login to ghcr.io | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: ghcr.io/${{ github.repository }} | ||
tags: | | ||
type=raw,value=latest,enable=${{ github.ref_name == 'main' }} | ||
type=raw,value=${{ env.APP_VERSION }},enable=${{ github.ref_name == 'main' }} | ||
- name: Build and push | ||
uses: docker/build-push-action@v6 | ||
with: | ||
platforms: linux/amd64,linux/arm64 | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
build-args: | | ||
VERSION=${{ env.APP_VERSION }} | ||
build-deploy: | ||
name: Build and Release | ||
needs: build-publish | ||
runs-on: ubuntu-latest | ||
container: ghcr.io/${{ github.repository }}:${{ env.APP_VERSION }} | ||
Check failure on line 48 in .github/workflows/workflow.yml GitHub Actions / CI (main and tags)Invalid workflow file
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Configure | ||
run: | | ||
cp ./config.json /app/config.json | ||
mv /app ./public | ||
- name: Upload | ||
run: | | ||
wget -O bunny-upload.tar.gz https://github.com/etkecc/bunny-upload/releases/download/${{ env.BUNNY_UPLOAD_VERSION }}/bunny-upload_Linux_x86_64.tar.gz | ||
tar -xzf bunny-upload.tar.gz | ||
echo "${{ secrets.BUNNY_CONFIG }}" > bunny-config.yaml | ||
./bunny-upload -c bunny-config.yaml |