Skip to content

Fall back to original destination IP if no SNI in the TLS handshake (… #29

Fall back to original destination IP if no SNI in the TLS handshake (…

Fall back to original destination IP if no SNI in the TLS handshake (… #29

Workflow file for this run

name: Publish
on:
push:
branches: [ main ]
jobs:
tests:
uses: ./.github/workflows/tests.yaml
integration-tests:
uses: ./.github/workflows/integration-tests.yaml
publish:
name: Publish Aproxy
runs-on: ubuntu-latest
needs: [ tests, integration-tests ]
steps:
- uses: actions/checkout@v2
- name: Build Aproxy Snap
id: snapcraft-build
uses: snapcore/action-build@v1
- name: Publish Aproxy
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPSTORE_TOKEN }}
run: |
for snap in aproxy*.snap
do
snapcraft upload $snap --release edge
done