Skip to content

fe additions

fe additions #9

Workflow file for this run

name: Secrets
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build and Run Go File
env:
POSTGRES_USERNAME: ${{ secrets.POSTGRES_USERNAME }}
POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }}
run: echo "My existing POSTGRES_USERNAME is ${{ secrets.POSTGRES_USERNAME }}"