Skip to content

Commit

Permalink
workflow: update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ShuN6211 committed Sep 29, 2024
1 parent 2f94a08 commit 845b12c
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: LocalMacOS

on: [push]
on:
push:
branches-ignore:
- main

jobs:
localMacOS:
Expand All @@ -9,6 +12,7 @@ jobs:

steps:
- name: Checkout

uses: actions/checkout@v2

- name: Run setup
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/local-ubuntu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: LocalUbuntu

on:
push:
branches-ignore:
- main

jobs:
localMacOS:
name: LocalUbuntu
runs-on: ubuntu-latest

steps:
- name: Checkout

uses: actions/checkout@v2

- name: Run setup
run: /bin/bash ./scripts/setup.bash
5 changes: 4 additions & 1 deletion .github/workflows/mac.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: macOS

on: [push]
on:
push:
branches:
- main

jobs:
macOS:
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: ubuntu

on:
push:
branches:
- main

jobs:
macOS:
name: ubuntu
runs-on: ubuntu-latest

steps:
- name: Setup
run: curl -sL https://raw.githubusercontent.com/ShuN6211/dotfiles/refs/heads/main/install.sh | sh
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# dotfiles

![macOS](https://github.com/ShuN6211/dotfiles/workflows/macOS/badge.svg)
![ubuntu](https://github.com/ShuN6211/dotfiles/workflows/ubuntu/badge.svg)
![Lint](https://github.com/ShuN6211/dotfiles/workflows/Lint/badge.svg)

- My dotfiles: config files and build scripts.
Expand Down

0 comments on commit 845b12c

Please sign in to comment.