Skip to content

Commit

Permalink
feat: added no docker yml
Browse files Browse the repository at this point in the history
  • Loading branch information
flavin27 committed Dec 29, 2023
1 parent c2edf35 commit 3b0bc0a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/run-bot-script.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: run bot script without docker
on:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
environment: myenvironment
steps:
- name: Make envfile
uses: SpicyPizza/[email protected]
with:
envkey_API_KEY: ${{secrets.API_KEY}}
envkey_API_SECRET_KEY: ${{secrets.API_SECRET_KEY}}
envkey_ACCESS_TOKEN: ${{secrets.ACCESS_TOKEN}}
envkey_ACCESS_TOKEN_SECRET: ${{secrets.ACCESS_TOKEN_SECRET}}
file_name: .env

- name: Log into registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin

- name: Run php script
run: php main.php

0 comments on commit 3b0bc0a

Please sign in to comment.