Skip to content

Commit

Permalink
Merge pull request #12 from TheBestTvarynka/ci/pr-check
Browse files Browse the repository at this point in the history
CI: check PR
  • Loading branch information
TheBestTvarynka authored May 3, 2024
2 parents 72b583b + 3595bb1 commit ab49dcb
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 2 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/check-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Check
on:
pull_request:
branches:
- main
jobs:
check:
name: Check code
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive

- name: 'Get Zola'
run: wget "https://github.com/getzola/zola/releases/download/v0.17.2/zola-v0.17.2-x86_64-unknown-linux-gnu.tar.gz"

- name: 'Extract zola'
run: tar xzf zola-v0.17.2-x86_64-unknown-linux-gnu.tar.gz

- name: 'Build site'
run: ./zola build
2 changes: 1 addition & 1 deletion .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

- id: 'auth'
name: 'Authenticate to Google Cloud'
uses: 'google-github-actions/auth@v0'
uses: 'google-github-actions/auth@v2'
with:
credentials_json: '${{ secrets.GCP_SERVICE_KEY }}'

Expand Down
1 change: 1 addition & 0 deletions content/posts/_index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
+++
title = "posts"
template = "posts.html"
sort_by = "date"
+++
2 changes: 1 addition & 1 deletion content/posts/scard-container-name/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ The *"launcher"* is named as *"HookLibrary"* due to my own historical reasons :z
2. Injects the `bad.dll` into the process memory forcing it to load this dll. In turn, the `bad.dll` will hook all needed methods.
3. Continues the execution.

So, as a result, you should get `HookLoadLibrary.exe`. Do not forget to set your own paths in the code!
So, as a result, you should get `HookLoadLibrary.exe`.

## Run it

Expand Down

0 comments on commit ab49dcb

Please sign in to comment.