Skip to content

Commit

Permalink
build ariflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yhilmare committed Sep 28, 2024
1 parent 0a9ef28 commit 68d8f1a
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build_airflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
###
# This workflow is used for quickly building artifacts
# Triggers:
# 1. Manual trigger
# Jobs:
# 1. Calculate Version Number
# 2. Build Web Artifact
# 3. Build Client Artifact
###

name: Build Airflow
run-name: Build Airflow triggered by ${{ github.actor }} 🛠️

on:
push:
branches:
- "**"
pull_request:
branches:
- "**"

jobs:
build-web-x86_64:
name: Build Web Artifact (x86_64)
runs-on: ubuntu-latest
steps:
- name: Checkout workspace
uses: actions/checkout@v4
- name: Build docker image (x86_64)
run: |
docker pull apache/airflow:2.9.3-python3.9
docker save -o airflow.tar.gz apache/airflow:2.9.3-python3.9
- name: Upload docker image (x86_64)
uses: actions/upload-artifact@v4
with:
name: airflow.tar.gz
path: airflow.tar.gz

0 comments on commit 68d8f1a

Please sign in to comment.