Skip to content

test16

test16 #21

Workflow file for this run

name: Test
env:
# The name of the main module repository
main_project_module: app
on:
push:
branches:
# Change this to master once everything is setup.
- 'test'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Set Current Date As Env Variable
- name: Setting Current Date as Env Variable
run: echo "date_today=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
# Constructing the GitTAG from versionName for creating a release.
- name: Constructing Git TAG
run: |
echo "The value of IAP_NO_ADS2 is $IAP_NO_ADS"
echo "IAP_NO_ADS=$(echo ${{ secrets.IAP_NO_ADS }})" >> $GITHUB_ENV
- name: Print environment variable
run: echo "The value of IAP_NO_ADS2 is $IAP_NO_ADS"