-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Michal Saloň
committed
Nov 12, 2024
0 parents
commit 010efbb
Showing
4 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Upload build asset | ||
|
||
on: | ||
release: | ||
types: [ published ] | ||
|
||
jobs: | ||
build: | ||
name: Upload build asset for ${{ matrix.name }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- name: imgproxy | ||
os: ubuntu-latest | ||
useDocker: true | ||
# command: /usr/bin/docker run -u0 --rm -v ${{ github.workspace }}/out:/dist ghcr.io/imgproxy/imgproxy:latest-amd64 imgproxy-build-package deb /dist | ||
image: ghcr.io/imgproxy/imgproxy:latest-amd64 | ||
# can not use ${{ github.workspace }} in matrix context, so path has to be, sadly, hardcoded | ||
options: -u0 -v /home/runner/work/deb-packages/deb-packages/out:/dist | ||
# cmd: /usr/bin/ls -lah / | ||
cmd: imgproxy-build-package deb /dist | ||
# cmd: imgproxy-build-package deb /dist && ls -lah /dist && mv /dist/imgproxy-*.amd64.deb /dist/imgproxy.amd64.deb && ls -lah /dist | ||
file: imgproxy.amd64.deb | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Build docker | ||
if: ${{ matrix.useDocker }} | ||
run: /usr/bin/docker run --rm --workdir /github/workspace -v ${{ github.workspace }}:/github/workspace ${{ matrix.options }} ${{ matrix.image }} "${{ matrix.cmd }}" | ||
# uses: addnab/docker-run-action@v3 | ||
# with: | ||
# image: ${{ matrix.image }} | ||
# options: ${{ matrix.options }} | ||
# run: ${{ matrix.cmd }} | ||
|
||
- name: Check output | ||
run: | | ||
ls -lah . | ||
ls -lah ./out/ | ||
ls -lah ${{ github.workspace }} | ||
ls -lah ${{ github.workspace }}/out/ | ||
- name: Upload to Release Action | ||
uses: Shopify/upload-to-release@c77c9b3e5d288adaef98a7007bf92340ec6ce03b | ||
with: | ||
name: ${{ matrix.file }} | ||
path: ${{ github.workspace }}/out/${{ matrix.file }} | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
content-type: application/octet-stream |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.idea/ |
Empty file.