Skip to content

Commit

Permalink
Add auth proxy release
Browse files Browse the repository at this point in the history
  • Loading branch information
kilimnik committed Feb 21, 2023
1 parent f8b1960 commit 54c7cd5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ jobs:
java-version: "11.x"
distribution: temurin

- uses: actions/setup-go@v3
with:
go-version: '^1.18.0'

- uses: actions/checkout@v3
with:
fetch-depth: "0"
Expand All @@ -49,12 +53,20 @@ jobs:
GOOGLE_JSON_KEY: ${{ secrets.GOOGLE_JSON_KEY }}
VERSION: ${{ steps.tagger.outputs.new_tag }}

- name: Install Auth Proxy dependencies
working-directory: ./auth_proxy
run: go get .
- name: Build Auth Proxy
run: go build -v
working-directory: ./auth_proxy

- name: Push Release
uses: softprops/action-gh-release@v1
with:
files: |
app/build/app/outputs/flutter-apk/app-release.apk
app/build/app/outputs/bundle/release/app-release.aab
auth_proxy/auth_proxy
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: ${{ steps.tagger.outputs.new_tag }}
fail_on_unmatched_files: true
Expand Down
1 change: 1 addition & 0 deletions auth_proxy/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
auth_proxy

0 comments on commit 54c7cd5

Please sign in to comment.