Use original Env setup script #10
Workflow file for this run
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
name: Build and Release | |
on: | |
workflow_run: | |
workflows: [E2E tests] | |
types: [completed] | |
branches: [master, ci-migration] | |
push: | |
tags: | |
- "v*" | |
# for debug purposes only | |
branches: [ci-migration] | |
# env: | |
# RELEASE_BUILD: ${{ contains(github.ref, 'refs/tags/v') && 'true' || 'false' }} | |
# SNAPSHOT_BUILD: ${{ github.ref == 'refs/heads/master' && 'true' || 'false' }} | |
# RC_BUILD: ${{ github.ref_type == 'tag' && endsWith(github.ref, '-rc') && 'true' || 'false' }} | |
# BUILD_VERSION: | |
env: | |
GITHUB_OWNER: mysteriumnetwork | |
GITHUB_REPO: node | |
GITHUB_SNAPSHOT_REPO: node-builds | |
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
build-packages: | |
# if: | | |
# ${{ github.event.workflow_run.conclusion == 'success' }} || | |
# ${{ github.event_name == 'push' && contains(github.ref, 'refs/tags/') }} | |
runs-on: ubuntu-latest | |
environment: production | |
strategy: | |
max-parallel: 4 | |
matrix: | |
platform: | |
- PackageLinuxRaspberryImage | |
- PackageLinuxAmd64 | |
- PackageLinuxArm | |
- PackageLinuxDebianAmd64 | |
- PackageLinuxDebianArm64 | |
- PackageLinuxDebianArm | |
- PackageMacOSAmd64 | |
- PackageMacOSArm64 | |
- PackageWindowsAmd64 | |
- PackageAndroid | |
- PackageAndroidProvider | |
- PackageDockerSwaggerRedoc | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21.x' | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Generate Env | |
run: go run mage.go -v GenerateEnvFile | |
- name: Setup FPM | |
run: | | |
sudo apt-get install ruby-dev build-essential | |
sudo gem i fpm -f | |
- name: Build package | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
run: | | |
source build/env.sh | |
go run mage.go -v ${{ matrix.platform }} |