Skip to content

Workflow file for this run

name: Publish package
run-name: Publish ${{github.ref_name}} by @${{ github.actor }}
on:
workflow_dispatch
jobs:
setup_variables:
name: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
binary:
name: Build on ${{ matrix.os }} for ${{ matrix.arch }}
runs-on: ubuntu-20.04
strategy:
matrix:
os: [ windows, darwin, linux ]
arch: [ amd64, arm64 ]
exclude:
- os: windows
arch: arm64
- os: darwin
arch: amd64
permissions:
contents: read
id-token: write
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Setup environment variables
run: |
echo "GOOS=${{ matrix.os }}" >> $GITHUB_ENV
echo "GOARCH=${{ matrix.arch }}" >> $GITHUB_ENV
- name: Build
run: |
go build -o snd-${{ matrix.os }}-${{ matrix.arch }} ./cmd/snd-cli
- name: Import Secrets
uses: hashicorp/[email protected]
with:
url: https://hashicorp-vault.production.sneaksanddata.com/
role: github
method: jwt
secrets: |
/secret/data/applications/ds-datalakes/production/esd_datalake_connection_string DATALAKE_CONNECTION_STRING ;
/secret/data/applications/ds-datalakes/production/credentials DATALAKE_ACCOUNT_KEY ;
/secret/data/common/azcopy AZCOPY_DOWNLOAD_URL ;
- name: Setup deployment account
run: |
set -e
sudo apt-get update -y && sudo apt-get install -y libc-bin binutils
account_name=$(echo "${{ env.DATALAKE_CONNECTION_STRING }}" | cut -d';' -f2 | cut -d'=' -f2)
echo "ACCOUNT_NAME=$account_name" >> "$GITHUB_OUTPUT"
echo "ACCOUNT_KEY=${{ env.DATALAKE_ACCOUNT_KEY }}" >> "$GITHUB_OUTPUT"
id: deployment_setup
- name: Install azcopy
uses: SneaksAndData/github-actions/[email protected]
- name: Generate SAS for upload
uses: SneaksAndData/github-actions/[email protected]
with:
directory_name: dist/snd-cli-go/
account_key: ${{ steps.deployment_setup.outputs.ACCOUNT_KEY }}
account_name: ${{ steps.deployment_setup.outputs.ACCOUNT_NAME }}
directory_type: blob
id: sas

Check failure on line 82 in .github/workflows/publish.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yaml

Invalid workflow file

You have an error in your yaml syntax on line 82
- name: Copy binaries
env:
UPLOAD_URL: ${{ steps.sas.outputs.authorized_destination }}
run: |
set -e
echo "Copying bundle..."
version=$(git describe --tags --abbrev=7)
echo "Version: $version"
# mv snd-${{ matrix.os }}-${{ matrix.arch }} ./dist
# echo "Archiving application..."
./azcopy copy "snd-${{ matrix.os }}-${{ matrix.arch }}" $UPLOAD_URL --overwrite true --put-md5 --metadata "version=$version"
echo "Uploading binaries..."