Skip to content

Update User.php

Update User.php #24

Workflow file for this run

name: Production application
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
build:
name: Deployment process
runs-on: ubuntu-latest
steps:
- name: Execute production deployment
run: |
echo "Deploying to production..."
TOKEN=${{ secrets.ATOKEN }}
OWNER=${{ github.repository_owner }}
REPO=${{ github.event.repository.name }}
BRANCHES=$(curl -H "Authorization: token $TOKEN" -s "https://api.github.com/repos/$OWNER/$REPO/branches")
echo "Branches: $BRANCHES"