Skip to content

Commit

Permalink
Indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
bneijt committed Mar 6, 2021
1 parent 356910e commit 70c85ac
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 26 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup
run: |
sudo apt-get install -y libgnutls28-dev g++ libbobcat-dev libgcrypt11-dev libboost-dev flex libfl-dev
cmake .
- name: Build
run: cmake --build . --config Release
- name: Test
run: cd src; ../ccbuild
- uses: actions/checkout@v2
- name: Setup
run: |
sudo apt-get install -y libgnutls28-dev g++ libbobcat-dev libgcrypt11-dev libboost-dev flex libfl-dev
cmake .
- name: Build
run: cmake --build . --config Release
- name: Test
run: cd src; ../ccbuild
34 changes: 17 additions & 17 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
name: release

on:
on:
push:
tags:
- '*'
- "*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup
run: |
sudo apt-get install -y libgnutls28-dev g++ libbobcat-dev libgcrypt11-dev libboost-dev flex libfl-dev pandoc
cmake .
- name: Build
run: cmake --build . --config Release
- name: Package
run: ./package.sh
id: package
- uses: ncipollo/release-action@v1
with:
artifacts: "build/ccbuild*.tar.gz"
bodyFile: "build/release.md"
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v1
- name: Setup
run: |
sudo apt-get install -y libgnutls28-dev g++ libbobcat-dev libgcrypt11-dev libboost-dev flex libfl-dev pandoc
cmake .
- name: Build
run: cmake --build . --config Release
- name: Package
run: ./package.sh
id: package
- uses: ncipollo/release-action@v1
with:
artifacts: "build/ccbuild*.tar.gz"
bodyFile: "build/release.md"
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 70c85ac

Please sign in to comment.