Skip to content

🎨 :: [#68] Edit λ°•λžŒνšŒ μ‹œμž‘μΌ, 마감일 λ³€μˆ˜λͺ… λ³€κ²½ #150

🎨 :: [#68] Edit λ°•λžŒνšŒ μ‹œμž‘μΌ, 마감일 λ³€μˆ˜λͺ… λ³€κ²½

🎨 :: [#68] Edit λ°•λžŒνšŒ μ‹œμž‘μΌ, 마감일 λ³€μˆ˜λͺ… λ³€κ²½ #150

Workflow file for this run

name: Expo CI
on:
pull_request:
branches: [ "*" ]
push:
branches: [ "*" ]
jobs:
CI:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: swift-actions/setup-swift@v1
with:
xcode-version: 16.0
- name: Build
run: swift build
# - name: Run tests
# run: swift test
- name: Success Discord Notification
uses: sarisia/actions-status-discord@v1
if: ${{ success() }}
with:
title: CI 성곡!
webhook: ${{ secrets.DISCORD_WEBHOOK }}
status: ${{ job.status }}
image: ${{ secrets.CI_SUCCESS_IMAGE }}
description: CIλ₯Ό μ„±κ³΅ν–ˆμŠ΅λ‹ˆλ‹€.
color: 00FF00
username: CI Bot
url: https://github.com/School-of-Company/Expo-iOS
- name: Failed Discord Notification
uses: sarisia/actions-status-discord@v1
if: ${{ failure() }}
with:
title: CI μ‹€νŒ¨!
webhook: ${{ secrets.DISCORD_WEBHOOK }}
status: ${{ job.status }}
image: ${{ secrets.CI_FAIL_IMAGE }}
description: CIλ₯Ό μ‹€νŒ¨ν–ˆμŠ΅λ‹ˆλ‹€.
color: FF0000
username: CI Bot
url: https://github.com/School-of-Company/Expo-iOS