Skip to content

๐Ÿ”€ :: [#44] Tuist ๋ฒ„์ „ ๋ณ€๊ฒฝ / ์ „์ฒด์ ์ธ ์ฝ”๋“œ ์ˆ˜์ • / ๊ฐ์ข… ์˜ค๋ฅ˜ ํ•ด๊ฒฐ #177

๐Ÿ”€ :: [#44] Tuist ๋ฒ„์ „ ๋ณ€๊ฒฝ / ์ „์ฒด์ ์ธ ์ฝ”๋“œ ์ˆ˜์ • / ๊ฐ์ข… ์˜ค๋ฅ˜ ํ•ด๊ฒฐ

๐Ÿ”€ :: [#44] Tuist ๋ฒ„์ „ ๋ณ€๊ฒฝ / ์ „์ฒด์ ์ธ ์ฝ”๋“œ ์ˆ˜์ • / ๊ฐ์ข… ์˜ค๋ฅ˜ ํ•ด๊ฒฐ #177

Workflow file for this run

name: GPle CI
on:
pull_request:
branches: [ "master" ]
push:
branches: [ "*" ]
jobs:
CI:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: SwiftyLab/setup-swift@latest
env:
SWIFT_SETUP_SKIP_GPG: "true"
with:
swift-version: '5.9'
- 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/GPle-Team/GPle-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/GPle-Team/GPle-iOS