summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorMatthieuCoder <matthieu@matthieu-dev.xyz>2023-01-03 15:39:23 +0400
committerMatthieuCoder <matthieu@matthieu-dev.xyz>2023-01-03 15:39:23 +0400
commit9593f5e56e90b5b4d41ad1e792489de336dc2c37 (patch)
tree2bbe8f9f38b8de7608aa18bf3c3177116857a3b2 /.github/workflows
parentedce28119fdf58ce265a4bf209c04af22b3f589b (diff)
parent570a1097635168e64689531d5ec426f0c083a0c2 (diff)
conflicts
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml22
1 files changed, 11 insertions, 11 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 2d293fa..cfb3bab 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -63,24 +63,24 @@ jobs:
uses: ATiltedTree/setup-rust@v1
with:
rust-version: stable
- - uses: actions/setup-go@v3
- with:
- go-version: '1.18.4' # The Go version to download (if necessary) and use.
+ - uses: actions/setup-go@v3
+ with:
+ go-version: '1.18.4' # The Go version to download (if necessary) and use.
- name: Build | Compile
run: cargo build --release
- name: Build | All in one
- run:
- - cd exes/all
- - make build
+ run: |
+ cd exes/all
+ make build
shell: bash
- name: Finish | Prepare artifacts
- run:
- - mkdir -p artifacts
- - cp target/release/{cache,gateway,webhook,ratelimit} ./artifacts
- - cp exes/all/build/all ./artifacts
+ run: |
+ mkdir -p artifacts
+ cp target/release/{cache,gateway,webhook,ratelimit} ./artifacts
+ cp exes/all/build/all ./artifacts
shell: bash
- name: Finish | Archive build results
uses: actions/upload-artifact@v3
with:
name: artifacts
- path: artifacts/* \ No newline at end of file
+ path: artifacts/*