diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..521bf32 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,26 @@ +--- +name: release +on: + push: + tags: + - 'v*' +permissions: + id-token: write + contents: read +defaults: + run: + shell: bash +jobs: + release: + runs-on: ['hyperenv', 'medium'] + steps: + - name: Create ZIP + run: | + cd plugin + zip -r ../attachmentav.zip . + cd .. + - name: Upload artifact + uses: actions/upload-artifact@v2 + with: + name: attachmentav + path: attachmentav.zip \ No newline at end of file diff --git a/README.md b/README.md index 4aff5cb..640731a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # attachmentAV WordPress plugin +Protect your blog from viruses, trojans, and other kinds of malware. The plugin sends all uploads to the attachmentAV API to scan for malware with Sophos and blocks infected files. + +This plugin requires a subscription and API key: [Get API key](https://attachmentav.com/subscribe/wordpress/) + ## Create artifact ``` diff --git a/compose.yaml b/compose.yaml index ac9731c..d61a746 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1,9 +1,6 @@ services: db: - # We use a mariadb image which supports both amd64 & arm64 architecture image: mariadb:10.6.4-focal - # If you really want to use MySQL, uncomment the following line - #image: mysql:8.0.27 command: '--default-authentication-plugin=mysql_native_password' volumes: - db_data:/var/lib/mysql