Skip to content

Commit

Permalink
Added CI github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mukwevhom committed May 8, 2024
1 parent 4e36f9e commit fa2c40d
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI

on:
workflow_dispatch:
push:
branches: [main]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

jobs:
deploy:
permissions:
contents: write
id-token: write
deployments: write
timeout-minutes: 3.5
runs-on: ["ubuntu-latest"]
steps:
- name: "🏨 Checkout"
uses: actions/checkout@v3

- name: "🦕 Setup Deno"
uses: denoland/setup-deno@v1
with:
deno-version: vx.x.x

- name: "Install deployctl"
run: deno install --allow-all --no-check --reload --force https://deno.land/x/deploy/deployctl.ts

- name: "🥬 Deploy App"
run: |
deployctl deploy --token="${{ secrets.DENO_DEPLOY_TOKEN }}" --="uc-fuel-scrapper" --prod

1 comment on commit fa2c40d

@deno-deploy
Copy link

@deno-deploy deno-deploy bot commented on fa2c40d May 8, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Failed to deploy:

Relative import path "oak/mod.ts" not prefixed with / or ./ or ../

Please sign in to comment.