Skip to content

Commit

Permalink
New actions (#2)
Browse files Browse the repository at this point in the history
* renaming artifact
  • Loading branch information
cropalato authored Jul 19, 2022
1 parent 8b836cf commit e8d7df6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/merged_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
go-version: ${{ matrix.go }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
- run: go build -o test-${{ matrix.os }}
- run: go build -o raproxy-${{ matrix.os }}
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: test-${{ matrix.os }}
name: raproxy-${{ matrix.os }}
path: ./
release-project:
if: ((github.event.action == 'closed' && github.event.pull_request.merged == true))
Expand All @@ -40,12 +40,10 @@ jobs:
steps:
- name: Download applications
uses: actions/download-artifact@v3
#with:
#name: test-${{ matrix.os }}
- run: ls -la
- name: Create Github release
uses: ncipollo/release-action@v1
with:
tag: test
tag: "v1.0.${{ github.event.pull_request.number }}"
allowUpdates: true
artifacts: "**/test-*"
artifacts: "**/raproxy-*"
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,4 @@ docker run --name rest_auth_proxy \
-e 'RAP_API_URL=http://dns.acme.foo:8081' \
-p 9998:9000 --rm cropalato/rest_auth_proxy:latest
```

0 comments on commit e8d7df6

Please sign in to comment.