Skip to content

Commit

Permalink
Merge pull request #7 from actalog/v1
Browse files Browse the repository at this point in the history
v1
  • Loading branch information
gabrielrufino authored Nov 21, 2024
2 parents db2aed3 + ef9f53b commit 878c057
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: CI

on:
- pull_request
- push
- workflow_dispatch

Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Release

on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+

permissions:
contents: write

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: softprops/action-gh-release@v2
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Mongodump Action
# Mongodump

GitHub Action for creating a binary export of a database's contents

Expand All @@ -15,7 +15,7 @@ jobs:
backup:
runs-on: ubuntu-latest
steps:
- uses: gabrielrufino/mongodump-action@v1
- uses: actalog/mongodump@v1
with:
connection-string: ${{ secrets.MONGO_URI }}
- uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Mongodump Action
name: '@actalog/mongodump'
description: GitHub Action for creating a binary export of a database's contents

inputs:
Expand Down

0 comments on commit 878c057

Please sign in to comment.