Skip to content

Commit

Permalink
test with script
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Florenti committed Aug 5, 2024
1 parent 5abe080 commit 2c63a5f
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 4 deletions.
31 changes: 27 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,30 @@ jobs:
env:
UPLOAD_KEY: ${{ secrets.UPLOAD_KEY }}
steps:
- name: Settalo
run: echo $UPLOAD_KEY > test.txt
- name: Gettalo
run: cat test.txt | sed 's/./& /g'
- uses: actions/checkout@v4
- run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_ENV
- run: wget -q https://dl.google.com/go/go1.13.4.linux-amd64.tar.gz
- run: sudo tar -xf go1.13.4.linux-amd64.tar.gz
- run: sudo mv go /usr/local
- run: echo "GOPATH=$HOME/go" >> $GITHUB_ENV
- run: echo "GOROOT=/usr/local/go" >> $GITHUB_ENV
- run: echo "PATH=$GOPATH/bin:$GOROOT/bin:$PATH" >> $GITHUB_ENV
- run: mkdir -p $HOME/go/src
- run: mkdir -p $HOME/go/bin
- run: go get "github.com/gobuffalo/packr/v2/packr2"
id: prepare_backend
- uses: actions/setup-node@v4
with:
node-version: '16.x'
- run: cd webmanager && npm install && npm run-script build-prod && cd ..
id: build_frontend
- run: make
id: build_backend
if: ${{ success() }}
- name: Upload artifacts
id: upload
env:
UPLOAD_KEY: ${{ secrets.UPLOAD_KEY }}
UPLOAD_URL: ${{ vars.UPLOAD_URL }}
if: ${{ success() }}
run: cd dist && find * -type f -exec ./scripts/upload-builds.sh
1 change: 1 addition & 0 deletions scripts/upload-builds.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
echo 'Uploading @{}' \; -exec curl -4 -F 'file=@{}' -F "path=$branch/{}" -F "key=$UPLOAD_KEY" "$UPLOAD_URL" \;;

0 comments on commit 2c63a5f

Please sign in to comment.