Closed Jahanzaiib closed 4 years ago
Sorry, but we'd like to keep issues related to code in this repository. Thank you 🙇
If you have questions about writing workflows or action files, then please visit the GitHub Community Forum's Actions Board
If you are having an issue or question about GitHub Actions then please contact customer support
I haven't been on git hub for months,I think someone has hacked my account,this isn't the only app I'm having issues with,I cant even get into my samsung account,Google says get a new account,well I shouldn't have to get a new account,I'm not very computer literate and have worked hard on getting where I am now,is there anything got hub can do to help ,point in in the direction of someone who can?thank you
On Mon, Sep 28, 2020, 4:31 PM github-actions[bot] notifications@github.com wrote:
Sorry, but we'd like to keep issues related to code in this repository. Thank you 🙇
If you have questions about writing workflows or action files, then please visit the GitHub Community Forum's Actions Board https://github.community/t5/GitHub-Actions/bd-p/actions
If you are having an issue or question about GitHub Actions then please contact customer support https://help.github.com/en/articles/about-github-actions#contacting-support
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/actions/starter-workflows/issues/653#issuecomment-700291974, or unsubscribe https://github.com/notifications/unsubscribe-auth/AM2ZBUVXMZQJY5XTD3KJMZDSID6BXANCNFSM4R22R4WA .
This is a basic workflow to help you get started with Actions
name: CI
Controls when the action will run. Triggers the workflow on push or pull request
events but only for the master branch
on: push: branches: [ master ] pull_request: branches: [ master ]
A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
This workflow contains a single job called "build"
build:
The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 - name: Setup Node.js environment uses: actions/setup-node@v2-beta with: version:12 - name: GitHub Action for Yarn uses: Borales/actions-yarn@v2.3.0 with: # Yarn command cmd: install # yarn install/npm install -name: Creating Build run: yarn build # Runs a set of commands using the runners shell - name: Installing surge run: npm install -g surge - name: deploying using surge run: surge ./ http://jazibootcamp2.surge.sh/ --token ${{secrets.SECRET_SURGE}}
This is a basic workflow to help you get started with Actions
name: CI
Controls when the action will run. Triggers the workflow on push or pull request
events but only for the master branch
on: push: branches: [ master ] pull_request: branches: [ master ]
A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
This workflow contains a single job called "build"
build:
The type of runner that the job will run on