Skip to content

Instantly share code, notes, and snippets.

View UmutSERIFLER's full-sized avatar
🎯
Focusing

Umut SERIFLER UmutSERIFLER

🎯
Focusing
View GitHub Profile
@UmutSERIFLER
UmutSERIFLER / actiontypes.csv
Created April 16, 2023 18:39
Type of Actions
Type Linux macOS Windows
Docker container
JavaScript
Composite Actions
@UmutSERIFLER
UmutSERIFLER / clean_build_test_project.yml
Last active February 20, 2023 19:31
Clean Build Test Project
name: Build Project Workflow
on:
push:
branches: [ "develop" ]
jobs:
clean_build_test:
runs-on: macos-latest
env:
ProjectName: SampleProject
steps:
@UmutSERIFLER
UmutSERIFLER / testing_project.yml
Last active February 20, 2023 19:30
Test Project
name: Test Project Workflow
on:
push:
branches: [ "develop" ]
jobs:
testing:
runs-on: macos-latest
env:
ProjectName: SampleProject
steps:
@UmutSERIFLER
UmutSERIFLER / build_project.yml
Created February 20, 2023 18:58
Build Project
name: Build Project Workflow
on:
push:
branches: [ "develop" ]
jobs:
build:
runs-on: macos-latest
env:
ProjectName: SampleProject
steps:
@UmutSERIFLER
UmutSERIFLER / clean_project.yml
Last active February 20, 2023 18:53
Clean Project
name: Clean Project Workflow
on:
push:
branches: [ "develop" ]
jobs:
clean:
runs-on: macos-latest
env:
ProjectName: SampleProject
steps:
@UmutSERIFLER
UmutSERIFLER / simple_github_workflow.yml
Last active February 20, 2023 19:29
simple_workflow_example
name: Swift
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: swift build
- name: Run tests
@UmutSERIFLER
UmutSERIFLER / run_sample.yml
Created February 16, 2023 22:49
run_sample
run: swift run Package
run: xcodebuild build -project ...
@UmutSERIFLER
UmutSERIFLER / steps_sample.yml
Created February 16, 2023 22:45
steps_sample
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Get Swift Version
run: swift --version
- name: Print Description
run: echo This step will print UmutSERIFLER
@UmutSERIFLER
UmutSERIFLER / runs-on-yml
Created February 16, 2023 22:24
runs-on-sample
runs-on: ubuntu-latest
# or runs-on: ubuntu-20.04
runs-on: macos-latest
# or macos-12
runs-on: windows-latest
# or runs-on: windows-2022
@UmutSERIFLER
UmutSERIFLER / on_github_actions.yml
Created February 16, 2023 22:05
on_github_actions
on:
push:
branches:
- 'releases/**'
pull_request:
branches:
- develop